-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 980 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
27
{
"name": "thelm",
"version": "1.0.0",
"description": "Elm-powered simple link manager.",
"main": "index.html",
"scripts": {
"build": "elm make src/Main.elm --output=app.js",
"optimise": "elm make src/Main.elm --optimize --output=app.js",
"minify": "uglifyjs app.js --compress 'pure_funcs=[F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9],pure_getters,keep_fargs=false,unsafe_comps,unsafe' | uglifyjs --mangle --output=public/app.min.js",
"netlify": "npm run optimise && npm run minify && sed 's/app.js/app.min.js/g' index.html > public/index.html && cp styles.css public/styles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnclmorais/thelm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnclmorais/thelm/issues"
},
"homepage": "https://github.com/gnclmorais/thelm#readme",
"devDependencies": {
"elm": "^0.19.1-3",
"uglify-js": "^3.8.1"
}
}