forked from t32k/stylestats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.42 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
{
"name": "stylestats",
"version": "4.0.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://1000ch.net/"
},
"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": {
"glob": "~3.2.9",
"less": "~1.7.0",
"chalk": "~0.4.0",
"stylus": "~0.43.1",
"numeral": "~1.5.3",
"promise": "~4.0.0",
"cheerio": "~0.15.0",
"request": "~2.34.0",
"json2csv": "~2.2.1",
"css-parse": "~1.7.0",
"commander": "~2.2.0",
"cli-table": "~0.3.0",
"gzip-size": "~0.1.0",
"underscore": "~1.6.0"
},
"devDependencies": {
"mocha": "~1.18.2",
"testem": "~0.6.14",
"istanbul": "~0.2.7",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1"
}
}