-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "minimal-gltf-loader",
"version": "0.1.0",
"description": "A minimal JavaScript glTF Loader without need of 3D engines like Three.js.",
"main": "build/minimal-gltf-loader.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "gulp jsHint",
"build-examples": "webpack --config examples/webpack.config.js",
"build-examples-watch": "webpack --config examples/webpack.config.js --watch",
"build": "webpack",
"build-watch": "webpack --watch",
"dev-server": "node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrekshao/minimal-gltf-loader.git"
},
"keywords": [
"glTF",
"WebGL"
],
"author": "shrekshao",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrekshao/minimal-gltf-loader/issues"
},
"homepage": "https://github.com/shrekshao/minimal-gltf-loader#readme",
"devDependencies": {
"css-loader": "^0.28.7",
"file-loader": "^0.11.2",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"shader-loader": "^1.3.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-glsl-loader": "^1.0.1"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}