-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "fdq",
"main": "./dist/fdq.dist.min.js",
"description": "Finite Domain reduction system and solver by qFox",
"license": "MIT",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "git://github.com/qfox/fdq.git"
},
"scripts": {
"install": "bin/create-git-hooks.sh",
"jest": "grunt distq && bin/jest.sh",
"test": "bin/lint.prod.sh && bin/mocha.sh",
"prepublishOnly": "grunt dist",
"lint": "bin/lint.prod.sh",
"lintdev": "bin/lint.dev.sh",
"lintfix": "bin/lint.fix.sh",
"mocha": "bin/mocha.sh",
"coverage": "bin/coverage.sh"
},
"babel": {
"presets": [
"es2015"
],
"sourceMap": true
},
"dependencies": {
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-polyfill": "*",
"babel-preset-es2015": "*",
"babelify": "*",
"chai": "*",
"eslint": "*",
"grunt": "*",
"grunt-babel": "*",
"grunt-cli": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-mocha-test": "*",
"grunt-remove": "*",
"grunt-replace": "*",
"grunt-run": "*",
"jest": "^21.2.1",
"js-beautify": "*",
"mocha": "*"
},
"keywords": [
"constraint solving",
"GSAT",
"finite domain solver",
"FD",
"Reduction system",
"Minifier",
"Logic",
"Deduction"
]
}