forked from t32k/stylestats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.45 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
60
61
62
63
64
65
66
67
{
"name": "stylestats",
"version": "5.1.0",
"main": "lib/stylestats.js",
"bin": {
"stylestats": "bin/cli.js"
},
"description": "StyleStats is a Node.js library to collect CSS statistics!",
"homepage": "https://github.com/t32k/stylestats",
"bugs": "https://github.com/t32k/stylestats/issues",
"author": {
"name": "Koji Ishimoto",
"email": "[email protected]",
"web": "http://t32k.me/"
},
"maintainers": {
"name": "Shogo Sensui",
"email": "[email protected]",
"web": "http://github.com/1000ch"
},
"repository": {
"type": "git",
"url": "[email protected]:t32k/stylestats.git"
},
"license": "MIT",
"keywords": [
"css",
"stylesheet",
"performance",
"property"
],
"scripts": {
"test": "mocha --timeout 5s --reporter=spec"
},
"engines": {
"node": "0.10.x"
},
"files": [
"lib",
"bin",
"assets"
],
"dependencies": {
"chalk": "^1.0.0",
"cheerio": "^0.19.0",
"cli-table": "^0.3.1",
"commander": "^2.6.0",
"css-parse": "^2.0.0",
"glob": "^5.0.3",
"gzip-size": "^1.0.0",
"handlebars": "^3.0.0",
"json2csv": "^2.2.1",
"less": "^2.4.0",
"mocha": "^2.1.0",
"numeral": "^1.5.3",
"promise": "^6.1.0",
"request": "^2.53.0",
"stylus": "^0.50.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"coveralls": "^2.11.1",
"istanbul": "^0.3.0",
"mocha-lcov-reporter": "0.0.2",
"testem": "^0.7.7"
}
}