forked from lo-th/phy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.04 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
62
63
64
65
66
67
68
{
"name": "phy-engine",
"version": "0.1.5",
"description": "JavaScript 3D Physics for three.js",
"type": "module",
"main": "build/Main.js",
"jsnext:main": "build/Phy.module.js",
"module": "./build/Phy.module.js",
"repository": {
"type": "git",
"url": "https://github.com/lo-th/phy"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"compact",
"build"
],
"directories": {
"doc": "docs",
"demos": "demos"
},
"eslintConfig": {
"extends": "mdcs"
},
"scripts": {
"build": "npm run phy && npm run oimo && npm run ammo && npm run physx && npm run havok && npm run rapier && npm run jolt",
"main": "rollup -c rollup/rollup.config.main.js",
"smoke": "rollup -c rollup/rollup.config.smoke.js",
"phy": "rollup -c rollup/rollup.config.phy.js",
"oimo": "rollup -c rollup/rollup.config.oimo.js",
"ammo": "rollup -c rollup/rollup.config.ammo.js",
"physx": "rollup -c rollup/rollup.config.physx.js",
"havok": "rollup -c rollup/rollup.config.havok.js",
"rapier": "rollup -c rollup/rollup.config.rapier.js",
"cannon": "rollup -c rollup/rollup.config.cannon.js",
"jolt": "rollup -c rollup/rollup.config.jolt.js",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c rollup/rollup.config.js -w -m inline\" \"servez -p 8121 --index\"",
"start": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c rollup/rollup.config.js -w -m inline\" \"http-server -c-1 -p 8121 -o index.html\""
},
"keywords": [
"oimo",
"ammo",
"physx",
"rapier",
"havok",
"jolt",
"cannon",
"three",
"physics",
"engine"
],
"author": "lo-th",
"license": "MIT",
"bugs": {
"url": "https://github.com/lo-th/phy/issues"
},
"homepage": "http://lo-th.github.io/phy/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"concurrently": "^5.3.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"servez": "^2.0.0"
}
}