-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "conquete",
"version": "0.2.9",
"description": "Logic for the risk board game",
"main": "./dist/index.js",
"scripts": {
"build": "babel --presets es2015,stage-0 -d dist/ lib/",
"prepublish": "npm run build",
"cli": "node ./cli/start.js",
"test": "mocha ./test --recursive --check-leaks --colors",
"test:watch": "npm test -- --watch",
"cover": "node ./node_modules/istanbul/lib/cli.js --include-all-sources cover --root lib _mocha ./test -R --spec -- --recursive",
"ci": "npm run cover",
"lint": "eslint lib"
},
"files": [
"dist"
],
"author": "Arjan Frans <arjanfrans.com@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arjanfrans/conquete"
},
"dependencies": {
"debug": "^2.2.0",
"jsonschema": "^1.1.0",
"object-protect": "0.0.3",
"strict-emitter": "0.0.6",
"strict-errors": "^0.1.8"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
}
}