This repository was archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "grunt-purgecss",
"version": "1.0.0",
"description": "Grunt plugin for purgecss",
"main": "./lib/grunt-purgecss.js",
"directories": {
"test": "__tests__"
},
"dependencies": {
"purgecss": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.0",
"grunt": "~1.0.3",
"jest": "^23.1.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0"
},
"scripts": {
"test": "grunt && npx jest __tests__/.+.test.js",
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"lint": "npx 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/grunt-purgecss.git"
},
"keywords": [
"gruntplugin",
"remove",
"unused",
"css",
"purgecss"
],
"author": "Ffloriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/FullHuman/grunt-purgecss/issues"
},
"homepage": "https://github.com/FullHuman/grunt-purgecss#readme"
}