-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1009 Bytes
/
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
{
"name": "service-unavailable",
"version": "1.0.0",
"description": "A static page to display when everything goes wrong",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && mkdir build/ && npm run copystyles && npm run copyhtml && npm run copyassets",
"copystyles": "mkdir build/css && cp -rf ./node_modules/kungbib-styles/dist/css/ ./build/css",
"copyhtml": "cp -rf ./src/ ./build/",
"copyassets": "mkdir build/assets && cp ./node_modules/kungbib-styles/dist/assets/kb_logo_black.svg ./build/assets/kb_logo_black.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kungbib/service-unavailable.git"
},
"author": "Ola Blissing <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kungbib/service-unavailable/issues"
},
"homepage": "https://github.com/Kungbib/service-unavailable#readme",
"dependencies": {
"kungbib-styles": "^1.2.4"
}
}