forked from donmccurdy/three-to-cannon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "three-to-cannon",
"version": "3.0.1",
"description": "Convert a THREE.Mesh to a CANNON.Shape.",
"main": "dist/three-to-cannon.js",
"module": "dist/three-to-cannon.module.js",
"source": "index.js",
"scripts": {
"test": "tape test/index.js | tap-spec",
"preversion": "npm run dist && npm test",
"dev": "microbundle watch --globals three=THREE --external three",
"dist": "microbundle --globals three=THREE --external three",
"version": "git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/three-to-cannon.git"
},
"keywords": [
"threejs",
"three",
"cannonjs",
"cannon",
"physics",
"simulation"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/donmccurdy/three-to-cannon/issues"
},
"homepage": "https://github.com/donmccurdy/three-to-cannon#readme",
"peerDependencies": {
"cannon-es": "^0.9.1",
"three": "^0.115.0"
},
"devDependencies": {
"cannon-es": "^0.9.1",
"esm": "^3.2.25",
"microbundle": "^0.12.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.0",
"three": "^0.115.0"
}
}