forked from uncss/uncss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.42 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.42 KB
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": "uncss",
"version": "0.16.2",
"author": "Giakki",
"description": "Remove unused CSS styles",
"license": "MIT",
"homepage": "https://github.com/uncss/uncss",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint \"**/*.js\" bin/uncss",
"mocha": "mocha tests/*.js --reporter spec --slow 7500 --timeout 25000",
"lint": "npm run eslint",
"test": "npm run eslint && npm run mocha",
"travis": "npm run eslint && nyc npm run mocha"
},
"main": "src/uncss.js",
"bin": {
"uncss": "bin/uncss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uncss/uncss.git"
},
"bugs": {
"url": "https://github.com/uncss/uncss/issues"
},
"keywords": [
"optimize",
"optimise",
"unused",
"rules",
"selector",
"CSS",
"HTML"
],
"files": [
"bin",
"src"
],
"dependencies": {
"commander": "^2.9.0",
"glob": "^7.0.3",
"is-absolute-url": "^2.0.0",
"is-html": "^1.0.0",
"jsdom": "^11.3.0",
"lodash": "^4.13.1",
"postcss": "^6.0.14",
"postcss-selector-parser": "3.1.1",
"request": "^2.72.0"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-resemble": "^0.4.1",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0"
},
"engines": {
"node": ">=6.0"
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}