-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1004 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "browser-game-loop",
"description": "Game loop for browser",
"main": "gameLoop.js",
"repository": {
"type": "git",
"url": "https://github.com/cstuncsik/browser-game-loop.git"
},
"keywords": [
"browser",
"game",
"main",
"loop"
],
"author": "Csaba Tuncsik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cstuncsik/browser-game-loop/issues"
},
"homepage": "https://github.com/cstuncsik/browser-game-loop#readme",
"scripts": {
"commit": "git-cz",
"build": "uglifyjs src/gameLoop.js --screw-ie8 -m -o gameLoop.js",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"semantic-release": "^6.3.2",
"uglify-js": "^3.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}