forked from piqnt/planck.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.31 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
{
"name": "planck-js",
"version": "0.1.34",
"description": "2D JavaScript physics engine for cross-platform HTML5 game development",
"homepage": "http://shakiba.me/planck.js",
"keywords": [
"box2d",
"html5",
"javascript",
"game",
"physics",
"engine",
"2d",
"mobile"
],
"license": "zlib",
"repository": {
"type": "git",
"url": "git://github.com/shakiba/planck.js.git"
},
"main": "lib/index.js",
"files": [
"doc/",
"lib/",
"test/",
"testbed/"
],
"author": "Ali Shakiba",
"contributors": [{
"name": "Ali Shakiba",
"url": "http://shakiba.me/planck.js"
}, {
"name": "Erin Catto",
"url": "http://box2d.org/"
}],
"devDependencies": {
"browserify": "^8.1.3",
"browserify-middleware": "^7.0.0",
"expect.js": "*",
"express": "^4.13.4",
"gulp": "*",
"gulp-header": "^1.7.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "*",
"gulp-util": "^3.0.5",
"handlebars": "^4.0.6",
"nodemon": "^1.11.0",
"serve-index": "^1.7.3",
"sinon": "*",
"stage-js": "*",
"uglifyify": "^3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"vinyl-transform": "^1.0.0"
},
"scripts": {
"test": "mocha test/*.js",
"dist": "gulp",
"testbed": "nodemon testbed/server.js"
}
}