This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "@fullhuman/postcss-purgecss",
"version": "1.3.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": "FullHuman/postcss-purgecss",
"bugs": {
"url": "https://github.com/FullHuman/postcss-purgecss/issues"
},
"homepage": "https://github.com/FullHuman/postcss-purgecss",
"dependencies": {
"postcss": "^7.0.14",
"purgecss": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"codacy-coverage": "^3.4.0",
"eslint": "^6.3.0",
"eslint-plugin-flowtype": "^4.3.0",
"flow-bin": "^0.110.0",
"jest": "^24.9.0",
"prettier": "^1.18.0",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.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'"
}
}