-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 848 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
{
"name": "JSGames",
"version": "1.0.0",
"description": "Framework to create javascript games",
"main": "index.js",
"scripts": {
"build": "rm -rf build || true; mkdir -p build; cp samples/*.html build; for js in samples/*.js; do browserify $js > $(echo $js | perl -pe 's{^samples}{build}'); done",
"brickbreaker": "npm install; cd samples; budo brick_breaker.js --open --live --debug"
},
"repository": {
"type": "git",
"url": "https://github.com/FCO/JSGames.git"
},
"author": "Fernando Correa de Oliveira <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/FCO/JSGames/issues"
},
"homepage": "https://github.com/FCO/JSGames",
"devDependencies": {
"browserify": "^13.0.0",
"budo": "^8.2.1"
},
"dependencies": {
"bulkify": "^1.2.0",
"decamelize": "^1.2.0"
}
}