forked from FullHuman/purgecss-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@dialonce/purgecss-webpack-plugin",
"version": "1.3.2",
"description": "Purgecss plugin for webpack - Remove unused css",
"main": "./lib/purgecss-webpack-plugin.js",
"module": "./lib/purgecss-webpack-plugin.es.js",
"jsnext:main": "./lib/purgecss-webpack-plugin.es.js",
"types": "./lib/purgecss-webpack-plugin.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__",
"example": "examples"
},
"files": [
"lib/"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"test": "npx jest .+.test.js",
"lint": "eslint -c .eslintrc src/",
"prettier": "npx prettier --write --print-width 100 --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/purgecss-webpack-plugin.git"
},
"keywords": [
"webpack-plugin",
"purgecss",
"remove",
"unused",
"css"
],
"author": "Ffloriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/purgecss-webpack-plugin/issues"
},
"homepage": "https://github.com/dial-once/purgecss-webpack-plugin#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"codacy-coverage": "^3.0.0",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.0",
"prettier": "^1.14.0",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1",
"webpack": "^4 || ^3",
"webpack-cli": "^3"
},
"dependencies": {
"purgecss": "^1.1.0",
"webpack-sources": "^1.2.0"
},
"peerDependencies": {
"webpack": "^4 || ^3",
"webpack-cli": "^3"
}
}