-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "gulp-coffee-istanbul",
"version": "0.9.1",
"description": "Istanbul coffee and js unit test coverage plugin for gulp.",
"keywords": [
"gulp",
"gulp-plugin",
"JavaScript",
"CoffeeScript",
"coverage",
"istanbul",
"unit test"
],
"homepage": "https://github.com/duereg/gulp-coffee-istanbul",
"bugs": "https://github.com/duereg/gulp-coffee-istanbul/issues",
"author": {
"name": "Matt Blair",
"email": "[email protected]",
"url": "https://github.com/duereg"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/duereg/gulp-coffee-istanbul.git"
},
"scripts": {
"pretest": "jshint index.js ./test/.",
"test": "mocha -R spec"
},
"dependencies": {
"coffee-script": "^1.9.0",
"gulp-util": "^3.0.2",
"ibrik": "^2.0.0",
"istanbul-traceur": "duereg/istanbul-traceur",
"lodash": "^4.14.0",
"through2": "^2.0.1"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-mocha": "^2.2.0",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"traceur": ">= 0.0.61 < 0.1.0"
},
"licenses": [
{
"type": "MIT"
}
]
}