-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
89 lines (89 loc) · 1.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "stylestats",
"version": "7.0.2",
"description": "StyleStats is a small library to collect CSS statistics!",
"author": "Koji Ishimoto <[email protected]>",
"contributors": [
{
"name": "1000ch",
"email": "[email protected]"
}
],
"bin": {
"stylestats": "bin/cli.js"
},
"main": "lib/stylestats.js",
"repository": {
"type": "git",
"url": "[email protected]:t32k/stylestats.git"
},
"bugs": "https://github.com/t32k/stylestats/issues",
"homepage": "http://www.stylestats.org",
"keywords": [
"css",
"stylesheet",
"performance",
"property"
],
"engines": {
"node": ">=6.x"
},
"files": [
"lib",
"bin",
"assets"
],
"scripts": {
"test": "xo && ava",
"lint": "xo",
"watch": "watch 'npm run lint'"
},
"ava": {
"require": [
"babel-register"
]
},
"xo": {
"space": true,
"esnext": true
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
],
"ignore": "test/*.js",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^0.22.0",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"css": "^2.2.1",
"glob": "^7.1.1",
"gzip-size": "^4.1.0",
"handlebars": "^4.0.6",
"json2csv": "^3.7.3",
"moment": "^2.22.1",
"numeral": "^2.0.6",
"request": "^2.85.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"coveralls": "^2.12.0",
"nyc": "^10.1.2",
"watch": "^1.0.2",
"xo": "^0.20.3"
},
"license": "MIT"
}