-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "static-fp",
"version": "1.0.0",
"description": "\"Static Website Generator for tEp\"",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postcss:build": "postcss --use=postcss-cssnext static/css/style-cssnext.css > static/css/style.css",
"css:min": "cleancss static/css/style.css > static/css/style.min.css",
"css:build": "npm run postcss:build && npm run css:min",
"css:watch": "onchange 'static/css/style-cssnext.css' -- npm run css:build",
"build": "npm run css:build",
"prewatch": "npm run build",
"watch": "npm run css:watch",
"start": "parallelshell 'npm run watch' 'hugo server'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tep-xi/static-fp.git"
},
"author": "tEp",
"license": "ISC",
"bugs": {
"url": "https://github.com/tep-xi/static-fp/issues"
},
"homepage": "https://github.com/tep-xi/static-fp#readme",
"devDependencies": {
"clean-css": "^4.0.0",
"onchange": "^3.2.1",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.9.0"
}
}