-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "prisoners-dilemma-tournament",
"version": "0.3.0",
"description": "A tournament of algorithms negotiating the Prisoner's Dilemma",
"repository": "https://github.com/garbados/prisoners-dilemma-tournament",
"main": "./lib/index.js",
"bin": {
"pdt": "./bin/cli"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "standard 'lib/**/*.js' 'test/**/*.js' 'bin/*' && mocha -R spec --recursive lib bin test",
"cov": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"docs": "jsdoc bin lib test -r -d docs -R readme.md -c conf.json",
"help": "./bin/cli -h",
"cli": "./bin/cli",
"rr": "./bin/cli roundrobin",
"gen": "./bin/cli generational",
"new": "./bin/cli scaffold",
"start": "npm run rr"
},
"author": "Diana Thayer <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"coveralls": "^2.13.1",
"jsdoc": "^3.4.3",
"mocha": "^2.5.3",
"nyc": "^10.3.2",
"standard": "^10.0.2"
},
"dependencies": {
"cli-table2": "^0.2.0",
"commander": "^2.9.0",
"ejs": "^2.5.6",
"groupstage": "^3.1.1",
"roundrobin": "^1.0.3",
"underscore": "^1.8.3"
}
}