-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "csc-tools",
"version": "1.1.0",
"description": "Tools for Cincinnati Smash Classic",
"main": "lib/index.js",
"bin": {
"csc-tools": "./bin/csc-tools.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sripberger/csc-tools.git"
},
"keywords": [
"tournament",
"smash",
"ssbm"
],
"scripts": {
"lint": "eslint . || exit 0",
"unit": "mocha ./test/setup.js ./test/unit --recursive -R spec || exit 0",
"integration": "mocha ./test/setup.js ./test/integration --recursive -R spec || exit 0",
"test": "npm run unit; npm run integration",
"docs": "documentation build -f html -o docs"
},
"author": "Steve Ripberger",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"documentation": "^4.0.0-rc.1",
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0"
},
"dependencies": {
"cliff": "^0.1.10",
"colors": "^1.1.2",
"commander": "^2.11.0",
"csv-parse": "^1.2.0",
"csv-stringify": "^1.0.4",
"gene-lib": "0.0.2",
"get-stdin": "^5.0.1",
"lodash": "^4.17.4",
"pify": "^3.0.0"
}
}