-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "finitedomain",
"main": "./dist/finitedomain.dist.min.js",
"description": "A fast feature rich finite domain solver",
"license": "MIT",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git://github.com/the-grid/finitedomain.git"
},
"scripts": {
"install": "bin/create-git-hooks.sh",
"test": "bin/lint.prod.sh && bin/mocha.sh",
"prepublish": "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
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "*",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsdoc": "^1.1.0",
"grunt-mocha-phantomjs": "^3.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-remove": "^0.1.0",
"grunt-replace": "*",
"grunt-run": "^0.5.2",
"ink-docstrap": "^1.1.4",
"istanbul": "0.4.4",
"isparta": "^4.0.0",
"js-beautify": "^1.6.2",
"mocha": "^2.4.5"
},
"keywords": [
"constraint solving",
"GSAT",
"finite domain solver",
"FD"
]
}