-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "nukecss-webpack",
"version": "0.0.0",
"description": "Eliminates unused css from your webpack bundle.",
"main": "./lib/index.js",
"scripts": {
"start": "webpack --config test/fixtures/webpack.config.js",
"start:debug": "node --inspect --debug-brk ./node_modules/.bin/webpack --config test/fixtures/webpack.config.js",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "mocha --reporter spec --require test/bootstrap 'test/**/*.test.js'",
"test:lint": "lint",
"test:watch": "mocha --watch --reporter dot --require test/bootstrap 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickhulce/nukecss-webpack.git"
},
"author": "Patrick Hulce <patrick.hulce@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickhulce/nukecss-webpack/issues"
},
"keywords": [
"webpack",
"remove",
"unused",
"css",
"optimize",
"selectors"
],
"homepage": "https://github.com/patrickhulce/nukecss-webpack#readme",
"dependencies": {
"debug": "^2.6.1",
"esprima": "^4.0.1",
"lodash": "^4.17.4",
"nukecss": "^1.9.0",
"webpack-sources": "^1.1.0"
},
"peerDependencies": {
"webpack": "4.x"
},
"devDependencies": {
"@patrickhulce/lint": "^2.1.3",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"source-map": "^0.5.6",
"style-loader": "^0.21.0",
"webpack": "4.x",
"webpack-cli": "^3.0.8"
}
}