forked from silviopaganini/physijs-browserify
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "physijs-webpack",
"version": "0.1.4",
"description": "PhysiJS port for bundlers with out-of-the-box support for Webpack and Browserify",
"main": "webpack.js",
"files": [
"physijs/**/*.js",
"webpack.js",
"browserify.js",
"browserify-worker-stub.js"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/physijs-webpack",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/physijs-webpack.git"
},
"bugs": {
"url": "https://github.com/agilgur5/physijs-webpack/issues"
},
"keywords": [
"physijs",
"physi.js",
"webpack",
"browserify",
"commonjs",
"module",
"modules",
"npm",
"ammo",
"ammo.js",
"threejs",
"three.js",
"port"
],
"scripts": {
"changelog": "changelog-maker",
"test": "npm run clean && npm run browserify && npm run webpack && ava",
"test:browserify": "npm run browserify && ava test/browserify.spec.js",
"test:webpack": "npm run webpack && ava test/webpack.spec.js",
"browserify": "node test/build-config/_browserify.config.js",
"webpack": "webpack --config test/build-config/_webpack.config.js",
"clean": "rm -rf build/ && mkdir build/"
},
"ava": {
"require": [
"./test/utils/_setup-browser-env.js"
]
},
"peerDependencies": {
"three": "^0.73.0"
},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"@react-frontend-developer/jsdom-worker": "^0.1.1",
"ava": "^2.1.0",
"browser-env": "^3.2.6",
"browserify": "^16.2.3",
"node-fetch": "^2.6.0",
"three": "^0.73.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webworkify": "^1.5.0",
"worker-loader": "^2.0.0"
}
}