-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "aframe-bevelbox-component",
"version": "1.0.0",
"description": "Bevelbox component for A-Frame.",
"main": "index.js",
"scripts": {
"build": "browserify examples/main.js -o examples/build.js",
"dev": "budo examples/main.js:build.js --dir examples --port 8000 --live --open",
"dist": "webpack index.js dist/aframe-bevelbox-component.js && webpack -p index.js dist/aframe-bevelbox-component.min.js",
"lint": "semistandard -v | snazzy",
"prepublish": "npm run dist",
"preghpages": "npm run build && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r examples/* gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"start": "npm run dev",
"unboil": "node scripts/unboil.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdub80/aframe-bevelbox-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Roland Dubois <contact@rolanddubois.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdub80/aframe-bevelbox-component/issues"
},
"homepage": "https://github.com/rdub80/aframe-bevelbox-component#readme",
"devDependencies": {
"aframe": "^1.0.4",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"budo": "^11.6.4",
"ghpages": "^0.0.10",
"inquirer": "^7.3.3",
"randomcolor": "^0.6.2",
"semistandard": "^14.2.3",
"shelljs": "^0.8.4",
"shx": "^0.3.2",
"snazzy": "^8.0.0 ",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0"
},
"semistandard": {
"ignore": [
"examples/build.js",
"dist/**"
]
},
"dependencies": {
"angle": "^0.9.1",
"envify": "^4.1.0"
}
}