-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "postcss-purgecss",
"version": "1.0.0",
"description": "PostCSS plugin for PurgeCSS",
"main": "./lib/postcss-purgecss.js",
"module": "./lib/postcss-purgecss.es.js",
"jsnext:main": "./lib/postcss-purgecss.es.js",
"directories": {
"lib": "lib",
"test": "__tests__",
"example": "examples"
},
"keywords": [
"postcss",
"postcss-plugin",
"remove",
"unused",
"css",
"purgecss"
],
"author": "FoundrySH <no-reply@foundry.sh>",
"license": "MIT",
"repository": "FoundrySH/postcss-purgecss",
"bugs": {
"url": "https://github.com/FoundrySH/postcss-purgecss/issues"
},
"homepage": "https://github.com/FoundrySH/postcss-purgecss",
"dependencies": {
"purgecss": "^0.21.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"codacy-coverage": "^2.1.1",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.46.2",
"flow-bin": "^0.70.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"rollup": "^0.58.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"scripts": {
"test": "npx jest __tests__/.+.test.js",
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"lint": "npx eslint -c .eslintrc src/",
"flow": "npx flow",
"prettier": "npx prettier --write --write --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
}
}