-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.53 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
{
"name": "beeroclock-site",
"version": "1.0.1",
"description": "A website which tells you where in the world it is beer o'clock (5PM) at the moment",
"scripts": {
"js": "babel --presets=es2015,babili -d build/js js && babel --presets=es2015,babili --out-file build/sw.js sw.js",
"css": "postcss --use cssnano -d build/style --no-map style/*",
"html": "htmlmin -o build/index.html index.html && htmlmin -o build/404.html 404.html",
"img": "cp img/* build/img",
"other": "cp robots.txt humans.txt manifest.json browserconfig.xml sitemap.xml _headers google-analytics.js build/",
"prebuild": "rm -rf build/ && mkdir build && cd build && mkdir js style img",
"build": "npm run js && npm run css && npm run html && npm run img && npm run other",
"dev": "live-server",
"start": "live-server build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colsen1991/beeroclock-site.git"
},
"keywords": [
"beer",
"clock",
"js",
"html",
"css"
],
"author": "Christer Olsen <colsen1991@gmail.com> (https://christerolsen.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/colsen1991/beeroclock-site/issues"
},
"homepage": "https://github.com/colsen1991/beeroclock-site#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-uglify": "^1.0.2",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"cssnano": "^3.10.0",
"html-minifier-cli": "^0.1.0",
"live-server": "^1.2.0",
"postcss-cli": "^5.0.0"
}
}