-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 865 Bytes
/
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
{
"name": "helium-cli",
"version": "1.1.0",
"description": "A tool to detect unused CSS across multiple web pages",
"main": "./lib/driver.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/jshint bin/*.js lib/*.js"
},
"bin": {
"helium-cli": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:villadora/helium-cli.git"
},
"keywords": [
"css",
"web performance",
"optimization"
],
"dependencies": {
"async": "^0.9.0",
"colors": "^0.6.2",
"css-parse": "^1.6.0",
"minimist": "^1.1.0",
"phantomjs": "~1.9.0",
"request": "~2.27.0"
},
"devDependencies": {
"jshint": "^2.5.4"
},
"readmeFilename": "README.md",
"author": {
"name": "wei.gao",
"email": "[email protected]"
},
"license": "BSD"
}