forked from tizzle/aframe-orbit-controls-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "aframe-orbit-controls-component-2",
"version": "0.1.14",
"description": "A (almost) direct port of the ThreeJS OrbitControls as a 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-orbit-controls-component.js && webpack -p index.js dist/aframe-orbit-controls-component.min.js",
"lint": "semistandard -v | snazzy",
"postpublish": "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",
"unboil": "node scripts/unboil.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tizzle/aframe-orbit-controls-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Till Hinrichs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tizzle/aframe-orbit-controls-component/issues"
},
"homepage": "https://github.com/tizzle/aframe-orbit-controls-component#readme",
"devDependencies": {
"aframe": "^0.7.0",
"browserify": "^13.0.0",
"browserify-css": "^0.9.1",
"budo": "^8.2.2",
"ghpages": "^0.0.8",
"inquirer": "^1.0.2",
"randomcolor": "^0.4.4",
"semistandard": "^8.0.0",
"shelljs": "^0.7.0",
"shx": "^0.1.1",
"snazzy": "^4.0.0",
"webpack": "^1.13.0"
},
"semistandard": {
"ignore": [
"examples/build.js",
"dist/**"
]
}
}