-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "mahjong",
"version": "1.0.0",
"description": "",
"main": "game.js",
"scripts": {
"server": "http-server ./game",
"build": "npm run build:dev && npm run build:min",
"build:dev": "rollup -c ./scripts/rollup.config.js",
"build:min": "uglifyjs ./game/dist/mahjong.dev.js --mangle --source-map url=mahjong.min.js.map -o ./game/dist/mahjong.min.js",
"dev": "rollup -w -c ./scripts/rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabingnn/mahjong.git"
},
"keywords": [],
"author": "Harrison Xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/dabingnn/mahjong/issues"
},
"homepage": "https://github.com/dabingnn/mahjong#readme",
"devDependencies": {
"@gamedev-js/rollup-plugin-node-resolve": "^3.0.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-watch": "^3.2.2",
"fs-jetpack": "^0.13.0",
"uglify-es": "^3.0.15",
"http-server": "^0.10.0"
}
}