-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 882 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": "steamshovel",
"version": "0.1.0a3",
"description": "Code Coverage Done Right!",
"main": "lib/index.js",
"dependencies": {
"escodegen": "~1.3.0",
"esprima": "~1.0.4",
"estraverse": "~1.5.0",
"mocha": "~1.18.0",
"mkdirp": "~0.3.5",
"columnify": "~0.1.2",
"jade": "~1.3.0",
"lodash": "~2.4.1"
},
"repository": "https://github.com/cgiffard/SteamShovel.git",
"devDependencies": {
"chai": "~1.9.1",
"jshint": "^2.5.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec test",
"coverage": "make coverage"
},
"bin": {
"shovel": "lib/cli.js"
},
"keywords": [
"coverage",
"mocha",
"test",
"framework",
"steam",
"shovel",
"instrument",
"source",
"code"
],
"author": "Christopher Giffard <[email protected]>",
"license": "BSD-3-Clause"
}