-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 864 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 864 Bytes
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
{
"name": "pixi-cast",
"version": "1.0.0",
"description": "A simple 3d raycast using PIXI.js",
"main": "./src/index.js",
"bin": {
"bundle": "bundle.js"
},
"dependencies": {
"pixi.js": "^4.8.1",
"jsdoc": "^3.5.5",
"gl-matrix": "^2.6.1",
"gltf-loader-ts": "0.2.1"
},
"devDependencies": {
"@pixi/jsdoc-template": "^2.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"jaguarjs-jsdoc": "^1.1.0",
"shader-loader": "^1.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Owain Bell",
"license": "ISC",
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
}
}