-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "istanbul-traceur",
"version": "1.0.7",
"description": "Provides alternative version of Istanbul which supports Traceur.",
"keywords": [
"istanbul",
"traceur",
"coverage",
"es6",
"harmony"
],
"license": "MIT",
"author": "Meo <[email protected]> (http://meo.guru)",
"files": [
"lib/**/*.js"
],
"main": "lib/istanbul.js",
"repository": "meoguru/istanbul-traceur",
"scripts": {
"test": "node node_modules/.bin/gulp lint test",
"coveralls": "node node_modules/.bin/gulp coveralls"
},
"dependencies": {
"esprima": "^1.2.2",
"extend": "^2.0.0",
"parent-require": "^1.0.0",
"source-map": "^0.1.40"
},
"devDependencies": {
"chai": "^1.10.0",
"gulp": "^3.8.10",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.3.1",
"gulp-jshint": "^1.9.0",
"gulp-load-plugins": "^0.7.1",
"gulp-mocha": "^1.1.1",
"gulp-notify": "^2.0.1",
"gulp-util": "^3.0.1",
"gulp-watch": "^1.2.0",
"istanbul": "^0.3.2",
"jshint-stylish": "^1.0.0",
"mocha": "^2.0.1",
"traceur": ">= 0.0.61 < 0.1.0"
},
"peerDependencies": {
"istanbul": "^0.3.2",
"traceur": ">= 0.0.61 < 0.1.0"
}
}