-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "postcss-npm-boilerplate",
"version": "1.0.0",
"description": "A straightforward boilerplate for using the PostCSS ecosystem via npm scripts.",
"scripts": {
"postinstall": "npm run watch",
"watch": "onchange 'src/*.css' -- npm run build",
"minify": "postcss -u cssnano dist/main.css -o dist/main.min.css",
"cleanup": "del-cli dist/main.css",
"build:css": "postcss -c postcss.config.json",
"build": "npm run build:css && npm run minify && npm run cleanup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thefoxis/postcss-npm-boilerplate.git"
},
"keywords": [
"modular css",
"css",
"postcss"
],
"author": "Karolina Szczur",
"license": "MIT",
"bugs": {
"url": "https://github.com/thefoxis/postcss-npm-boilerplate/issues"
},
"homepage": "https://github.com/thefoxis/postcss-npm-boilerplate#readme",
"devDependencies": {
"cssnano": "^3.7.1",
"del-cli": "^0.2.0",
"onchange": "^2.5.0",
"postcss-cli": "^2.5.2",
"postcss-cssnext": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-simple-vars": "^2.0.0"
}
}