-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "cascade",
"version": "1.0.0",
"description": "CSS starter-kit built on top of PostCSS",
"repository": {
"type": "git",
"url": "https://github.com/felixdorner/cascade"
},
"postcss": {
"plugins": {
"postcss-easy-import": {},
"postcss-preset-env": {
"stage": "0",
"browsers": "defaults",
"features": {
"custom-properties": false
},
"preserve": false
},
"postcss-clean": {
"keepSpecialComments": "1"
}
}
},
"scripts": {
"css": "postcss src/style.css -o dist/cascade.min.css",
"copy": "cp dist/cascade.min.css docs/assets/css/",
"watch": "onchange 'src/**/*.css' -- npm-run-all css copy",
"build": "npm-run-all css copy"
},
"keywords": [
"boilerplate",
"css",
"framework",
"grid",
"postcss"
],
"author": "Felix Dorner <[email protected]>",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.2",
"onchange": "^5.2.0",
"postcss": "^7.0.7",
"postcss-clean": "^1.1.0",
"postcss-cli": "^6.1.0",
"postcss-easy-import": "^3.0.0",
"postcss-preset-env": "^6.5.0"
}
}