-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.05 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "atomblast.io",
"version": "1.0.0",
"description": "First attempt at multiplayer online io game",
"main": "index.js",
"scripts": {
"test": "(jest && printf \" \\033[1;40;32m Unit testing passed.\\033[m \") || (printf \" \\033[1;41;33m Unit testing failed.\\033[m \" && exit 1)",
"watch": "watchify src/client/js/app.js -o src/client/js/public/build.js -v",
"server": "nodemon src/server/entry.js",
"start": "npm-run-all --parallel watch server",
"build": "browserify src/client/js/app.js -o src/client/js/public/build.js",
"lint": "chmod +x ./scripts/lint.sh && bash -c \"./scripts/lint.sh\"",
"lint-compatibility-mode": "./node_modules/.bin/eslint ./src/",
"fix-lint": "chmod +x ./scripts/fix_lint.sh && bash -c \"./scripts/fix_lint.sh\"",
"test-env": "chmod +x ./scripts/test_env.sh && bash -c \"./scripts/test_env.sh\"",
"precommitold": "npm run -s lint && printf \"Running unit testing..\" && npm test",
"docs": "esdoc",
"update": "node node_modules/npm-check/bin/cli.js -u",
"disableannoyinglineendingwarning": "git config --global core.safecrlf false && printf \"Annoying line ending warnings has been disabled.\"",
"generate-spritesheet": "spritesheet-js src/client/assets/spritesheet/*/*/*.png src/client/assets/spritesheet/*/*.png --path src/client/assets/ --padding 5"
},
"repository": {
"type": "git",
"url": "https://github.com/BananiumLabs/AtomBlast.io.git"
},
"keywords": [
"io",
"game",
"atomblast",
"atom",
"pixi"
],
"author": "Bananium Labs",
"license": "MIT",
"contributors": [
"Ben Cuan <[email protected]> (https://github.com/64bitpandas)",
"Vikram Peddinti <[email protected]> (https://github.com/darkflamex1)",
"Eric Qian <[email protected]> (https://github.com/EnumC)"
],
"bugs": {
"url": "https://github.com/BananiumLabs/AtomBlast.io/issues"
},
"homepage": "https://github.com/BananiumLabs/AtomBlast.io#readme",
"dependencies": {
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"colors": "^1.3.3",
"express": "^4.16.4",
"nipplejs": "^0.8.0",
"pixi.js": "^4.8.4",
"socket.io": "^2.2.0",
"sweetalert": "^2.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.11.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"npm-check": "^5.9.0",
"npm-run-all": "^4.1.5",
"npm-run-parallel": "^0.6.0",
"watchify": "^3.11.0",
"spritesheet-js": "^1.2.6"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "npm run -s lint && printf \"Generating Documentation...\" && npm run docs && printf \"===Documentation Generation Ended===\" ",
"pre-push": "chmod +x ./scripts/prepush.sh && bash -c \"./scripts/prepush.sh\" "
}
}
}