forked from douglasduteil/isparta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "isparta",
"version": "3.0.3",
"description": "A code coverage tool for ES6 (babel)",
"main": "./lib/isparta",
"keywords": [
"karma",
"karma-coverage",
"karma-traceur-preprocessor",
"istanbul",
"6to5",
"babel",
"es6",
"harmony"
],
"directories": {
"lib": "./lib"
},
"bin": {
"isparta": "./bin/isparta"
},
"author": {
"name": "Douglas Duteil",
"email": "[email protected]"
},
"homepage": "http://github.com/douglasduteil/isparta",
"bugs": {
"url": "http://github.com/douglasduteil/isparta/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/douglasduteil/isparta.git"
},
"license": "WTFPL",
"dependencies": {
"babel-core": "^5.0.4",
"escodegen": "^1.6.1",
"esprima": "^2.1.0",
"istanbul": "^0.3.13",
"lodash.partial": "^3.1.0",
"mkdirp": "^0.5.0",
"nomnom": "douglasduteil/nomnom#next",
"source-map": "^0.4.2",
"which": "^1.0.9"
},
"devDependencies": {
"babel": "^5.0.4",
"chai": "^2.2.0",
"hide-stack-frames-from": "^1.0.0",
"mocha": "^2.2.1",
"nth": "^0.1.2"
},
"scripts": {
"dist": "babel src --out-dir lib",
"watch": "npm run dist -- -w",
"test": "mocha",
"prepublish": "npm run dist"
}
}