-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "aframe-gui",
"version": "0.5.1",
"description": "A-Frame GUI components",
"author": "Leonardo Malave <[email protected]>",
"contributors": [
{
"name": "Roland Dubois",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"dist": "webpack",
"dist-min": "webpack -p --config webpack.config.babelmin.js",
"dist-example": "webpack --config webpack.config.example.js",
"dist-example-min": "webpack -p --config webpack.config.examplemin.js",
"start": "webpack-dev-server --content-base examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdub80/aframe-gui.git"
},
"keywords": [
"aframe",
"a-frame",
"aframe-component",
"aframe-vr",
"aframe-gui",
"vr",
"webgl",
"webvr",
"mozvr"
],
"bugs": {
"url": "https://github.com/rdub80/aframe-gui/issues"
},
"homepage": "https://github.com/rdub80/aframe-gui#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.18.0",
"minifier": "^0.8.1",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "2.2.1",
"webpack-dev-server": "1.16.5"
}
}