-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 869 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
{
"name": "250-ui",
"version": "0.0.1",
"description": "A UI for the card game 250.",
"main": "Main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:elm": "elm make src/Main.elm --optimize --output=Main.js",
"build": "npm run build:elm && npm run minifyJs",
"minifyJs": "uglifyjs Main.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 Main.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohri-anurag/250-UI.git"
},
"author": "Anurag Ohri",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ohri-anurag/250-UI/issues"
},
"homepage": "https://github.com/ohri-anurag/250-UI#readme",
"dependencies": {
"uglify-js": "^3.14.1"
}
}