-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 2.63 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": "physics-module-ammonext",
"version": "0.1.2-fix.1",
"description": "physics module for Whitestorm.js",
"main": "build/physics-module.js",
"modules": "build/physics-module.module.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build-native-ammo && rollup -c -w -m inline",
"build-native-ammo": "node ./scripts/build-native-ammo.js",
"build": "npm run build-native-ammo && del build/*.js && cross-env NODE_ENV=production rollup -c && npm run minify",
"minify": "java -jar node_modules/google-closure-compiler/compiler.jar --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --language_in=ECMASCRIPT6_STRICT --externs tools/build/externs.js --js build/physics-module.js --js_output_file build/physics-module.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhitestormJS/physics-module-ammonext.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhitestormJS/physics-module-ammonext/issues"
},
"homepage": "https://github.com/WhitestormJS/physics-module-ammonext#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"cross-env": "^5.1.3",
"del": "^2.2.2",
"express": "^4.14.0",
"google-closure-compiler": "^20170910.0.0",
"gulp": "^3.9.1",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.4",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-watch": "^4.3.1",
"serve-index": "^1.8.0",
"three": "^0.84.0",
"webpack": "^2.1.0-beta.28",
"webpack-dev-middleware": "^1.8.4",
"webworkify-webpack": "^2.0.1",
"worker-loader": "^0.7.1"
},
"dependencies": {
"ammonext": "0.0.3",
"rollup-plugin-bundle-worker": "^0.1.0",
"rollup-plugin-ignore": "^1.0.3",
"three": "^0.84.0",
"whs": "^2.0.0-beta.2"
}
}