-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "nukecss",
"version": "0.0.0",
"description": "Eliminates unused CSS rules.",
"main": "./lib/nuke.js",
"bin": {
"nukecss": "./bin/nukecss.js"
},
"scripts": {
"start": "node ./bin/nukecss.js 'test/fixtures/*.@(js|html)' test/fixtures/content.css",
"start:debug": "node --inspect-brk ./bin/nukecss.js 'test/fixtures/*.@(js|html)' test/fixtures/content.css",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "mocha --reporter spec --require test/bootstrap 'test/**/*.test.js'",
"test:lint": "lint",
"test:coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --require test/bootstrap 'test/**/*.test.js'",
"test:watch": "mocha --watch --reporter dot --require test/bootstrap 'test/**/*.test.js'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickhulce/nukecss.git"
},
"author": "Patrick Hulce <patrick.hulce@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickhulce/nukecss/issues"
},
"keywords": [
"remove",
"unused",
"css",
"optimize",
"selectors"
],
"homepage": "https://github.com/patrickhulce/nukecss#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"ast-traverse": "^0.1.1",
"debug": "^2.6.1",
"esprima": "^3.1.3",
"glob": "^7.1.1",
"gonzales-pe": "^4.0.3",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.4",
"postcss": "^5.2.15"
},
"devDependencies": {
"@patritech/lint": "^1.2.3",
"chai": "^3.5.0",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"semantic-release": "^6.3.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"source-map": "^0.5.6"
}
}