-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 999 Bytes
/
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
{
"name": "docopt-js",
"version": "1.0.0",
"author": "Marat Dulin <[email protected]>",
"license": "MIT",
"description": "Easy CLI toolkit",
"unit-coverage": {
"common": [
"-s",
"lib/**",
"-t",
"test/**",
"-a",
"lib",
"-S",
"relative",
"-O",
"tests=test",
"--",
"--recursive",
"lib",
"test"
]
},
"scripts": {
"test": "npm run check-style && npm run unit-test",
"check-style": "jshint lib test && jscs lib test",
"unit-test": "mocha -R spec --recursive lib test",
"coverage": "unit-coverage run -p common",
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
"travis": "npm run test && unit-coverage run -p common -r lcov -o out.lcov && cat out.lcov | coveralls"
},
"devDependencies": {
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"jscs": "^1.7.3",
"jshint": "^2.5.10",
"mocha": "^2.0.1",
"unit-coverage": "^3.2.0"
}
}