-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 903 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 903 Bytes
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
{
"name": "postcss-purifycss",
"version": "1.1.0",
"description": "Clean unnecessary CSS with PurifyCSS",
"main": "index.js",
"author": {
"name": "David Sevilla Martín",
"email": "dsevilla192@icloud.com",
"url": "https://github.com/datitisev"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"purify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datitisev/postcss-purifycss.git"
},
"bugs": {
"url": "https://github.com/datitisev/postcss-purifycss/issues"
},
"homepage": "https://github.com/datitisev/postcss-purifycss#readme",
"scripts": {
"lint": "prettier --write index.js"
},
"license": "MIT",
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"purify-css": "^1.2.5"
},
"peerDependencies": {
"postcss": "6.x - 7.x"
},
"devDependencies": {
"prettier": "^1.13.7"
}
}