-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "selector-detector",
"version": "1.1.4",
"main": "./bin/selector-detector.js",
"bin": {
"selector-detector": "./bin/selector-detector.js"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "npm run lint -- --fix",
"example1": "./bin/selector-detector.js http://localhost:9876/tooManySelectors/ -p",
"example2": "./bin/selector-detector.js http://localhost:9876/tooManyStylesheets/",
"example-server": "node ./node_modules/http-server/bin/http-server ./test -s -p 9876"
},
"devDependencies": {
"eslint-config-okize": "^1.7.0",
"http-server": "^14.1.1"
},
"keywords": [
"css",
"rules",
"selector",
"declarations",
"count"
],
"description": "CLI tool to count the CSS rules, selectors and declarations on a web page.",
"repository": {
"type": "git",
"url": "https://github.com/okize/selector-detector.git"
},
"bugs": "https://github.com/okize/selector-detector/issues",
"homepage": "https://github.com/okize/selector-detector/",
"author": {
"name": "Morgan Wigmanich",
"email": "[email protected]",
"url": "https://github.com/okize"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"async": "^3.2.6",
"cheerio": "^1.0.0",
"cli-table": "^0.3.11",
"css-parse": "^2.0.0",
"optimist": "^0.6.1",
"progger": "^1.0.1",
"request": "^2.88.2"
}
}