This repository was archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "purgecss-webpack-plugin",
"version": "1.6.0",
"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/FullHuman/purgecss-webpack-plugin.git"
},
"keywords": [
"webpack-plugin",
"purgecss",
"remove",
"unused",
"css"
],
"author": "Ffloriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/FullHuman/purgecss-webpack-plugin/issues"
},
"homepage": "https://github.com/FullHuman/purgecss-webpack-plugin#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"codacy-coverage": "^3.4.0",
"css-loader": "^3.2.1",
"eslint": "^6.3.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.18.2",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"webpack": "^4 || ^3",
"webpack-cli": "^3"
},
"dependencies": {
"purgecss": "^1.4.0",
"webpack-sources": "^1.4.3"
},
"peerDependencies": {
"webpack": "^4 || ^3"
}
}