-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 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
{
"name": "breathe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p build && npm run build-static && npm run build-styles && npm run build-icons && npm run build-serviceworker",
"build-static": "cp index.html manifest.json build",
"build-styles": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o build/style.bundle.css style.css",
"build-icons": "svgexport icon.svg build/icon-192.png 192:192 100% && svgexport icon.svg build/icon-168.png 168:168 100% && svgexport icon.svg build/icon-144.png 144:144 100% && svgexport icon.svg build/icon-96.png 96:96 100% && svgexport icon.svg build/icon-72.png 72:72 100% && svgexport icon.svg build/icon-48.png 48:48 100% && svgexport icon-apple.svg build/icon-192-apple.png 192:192 100%",
"build-serviceworker": "cd build && sw-precache"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"postcss-cli-simple": "^1.0.3",
"svgexport": "^0.3.2",
"sw-precache": "^4.2.3"
}
}