forked from dwyl/book
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 851 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "learn-mocha",
"repository": {
"type": "git",
"url": "https://github.com/nelsonic/learn-mocha.git"
},
"description": "Simple mocha.js tutorial including istanbul test coverage",
"version": "1.0.0",
"devDependencies": {
"mocha": "^2.2.5",
"istanbul":"^0.3.17",
"codeclimate-test-reporter": "^0.0.4"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"coverage":"istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"codeclimate": "CODECLIMATE_REPO_TOKEN=8138682931f34a05f1829d6c49d791a097e820489d6f98d3d0c0d829c5612585 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info"
},
"author": "nelsonic <nodecoder@gmail.com> (https://github.com/nelsonic)",
"license": "ISC",
"bugs": {
"url": "https://github.com/docids/learn-mocha/issues"
}
}