-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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": "gulp-coffee-coverage",
"version": "1.0.0",
"description": "gulp plugin for coffee-coverage. Compiles CoffeeScript into JavaScript with coverage logic provided by coffee-coverage.",
"files": [
"dist"
],
"main": "dist/coverage.js",
"directories": {
"test": "test"
},
"scripts": {
"preversion": "npm-git-library-version preversion",
"version": "npm-git-library-version version",
"postversion": "npm-git-library-version postversion",
"build": "gulp chained-1-build",
"test": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WHenderson/gulp-coffee-coverage.git"
},
"keywords": [
"gulp",
"coffee-script",
"coffee",
"script",
"coffee-coverage",
"coverage",
"gulpplugin"
],
"author": "Will Henderson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WHenderson/gulp-coffee-coverage/issues"
},
"homepage": "https://github.com/WHenderson/gulp-coffee-coverage#readme",
"dependencies": {
"coffee-coverage": "^1.0.1",
"extend": "^3.0.0",
"gulp-util": "^3.0.7",
"stream-buffers": "^3.0.0",
"through": "^2.3.8"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.9",
"del": "^2.2.0",
"globby": "^4.0.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-cli": "gulpjs/gulp-cli#4.0",
"gulp-coffee": "^2.3.2",
"gulp-rimraf": "^0.2.0",
"gulp-spawn-mocha": "^2.2.2",
"gulp-util": "^3.0.7",
"npm-git-library-version": "^1.0.0"
}
}