-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
{
"name": "three-x3d-loader",
"version": "0.4.0",
"description": "Three loader for the X3D format.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jonaskello/three-x3d-loader.git"
},
"keywords": [
"three",
"x3d"
],
"author": "Jonas Kello",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonaskello/three-x3d-loader/issues"
},
"homepage": "https://github.com/jonaskello/three-x3d-loader#readme",
"devDependencies": {
"shelljs": "^0.7.7",
"three": "^0.82.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"xmldom": "^0.1.27"
},
"scripts": {
"start": "webpack-dev-server --config example/webpack.example.config.js --content-base=example/",
"publish-package": "node scripts/publish.js"
}
}