forked from bllem/cannon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "cannonjs-ccd",
"version": "0.6.4",
"description": "A lightweight 3D physics engine written in JavaScript. With CCD",
"homepage": "https://github.com/yyynnn/cannonjs-ccd",
"author": "Stefan Hedman <[email protected]> (http://steffe.se)",
"keywords": [
"cannon.js",
"cannon",
"physics",
"engine",
"3d"
],
"main": "./build/cannon.min.js",
"sideEffects": false,
"files": [
"build/",
"index.d.ts"
],
"types": "./index.d.ts",
"engines": {
"node": "*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/yyynnn/cannonjs-ccd.git"
},
"bugs": {
"url": "https://github.com/yyynnn/cannonjs-ccd/issues"
},
"licenses": [
{
"type": "MIT"
}
],
"devDependencies": {
"jshint": "latest",
"uglify-js": "latest",
"nodeunit": "^0.9.0",
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-uglify": "^0.5.1",
"grunt-browserify": "^2.1.4",
"grunt-contrib-yuidoc": "^0.5.2",
"browserify": "*"
},
"dependencies": {}
}