forked from simmo/gulp-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.1 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
{
"name": "gulp-stats",
"version": "0.0.3",
"description": "Display stats for Gulp tasks",
"main": "index.js",
"scripts": {
"pre-test": "jshint *.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gulp",
"time",
"task",
"profile",
"benchmark",
"measure",
"stats"
],
"author": {
"name": "Mike Simmonds",
"url": "http://simmo.me"
},
"license": "MIT",
"dependencies": {
"chalk": "^0.5.1",
"pretty-hrtime": "^1.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"jshint": "^2.6.0"
},
"repository": {
"type": "git",
"url": "[email protected]:simmo/gulp-stats.git"
},
"bugs": {
"url": "https://github.com/simmo/gulp-stats/issues"
},
"homepage": "https://github.com/simmo/gulp-stats",
"jshintConfig": {
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"node": true,
"quotmark": "single",
"strict": true,
"undef": true,
"unused": true
}
}