-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "box2d-jquery",
"version": "0.8.0",
"description": "box2d physics engine for your DOM with a nice jquery wrapper",
"homepage": "https://github.com/franzenzenhofer/box2d-jquery",
"buildto": "js/lib/jquery.box2d.js",
"main": "js/lib/jquery.box2d.min.js",
"dependencies": {
"grunt": ">= 0.4.1"
},
"devDependencies": {
"grunt": ">= 0.4.1",
"coffee-script": ">= 1.6.3",
"grunt-contrib-uglify": ">= 0.2.0",
"grunt-contrib-concat": ">= 0.1.3",
"grunt-contrib-watch": "0.2.0rc7",
"grunt-contrib-coffee": ">= 0.6.4",
"grunt-contrib-jshint": ">= 0.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/franzenzenhofer/box2d-jquery.git"
},
"keywords": [
"box2d",
"dom",
"physics",
"engine",
"game",
"gamedev",
"html",
"jquery"
],
"buildfiles": [
"js/vendor/box2dweb/Box2dWeb-2.1.a.3.min.js",
"js/vendor/jquery.bodysnatch.js",
"js/vendor/RequestAnimationFrame.js",
"js/temp/main.js"
],
"coffeesrc":[
"js/src/init.coffee",
"js/src/mouse-touch.coffee",
"js/src/create.coffee",
"js/src/app.coffee",
"js/src/physics.coffee",
"js/src/jquerywrapper.coffee"
],
"coffetemp": "js/temp/main.coffee",
"temp": "js/temp",
"coffeedest": "js/temp/main.js",
"author": "franz enzenhofer",
"license": "zlib",
"readmeFilename": "README.md"
}