forked from ngokevin/aframe-component-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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-fps-look-component",
"version": "0.1.1",
"description": "FPS-like mouse look component for A-Frame VR",
"main": "index.js",
"scripts": {
"dev": "budo examples/main.js --dir examples --port 8000 --live --open",
"dist": "webpack browser.js dist/aframe-example-component.js && webpack -p browser.js dist/aframe-example-component.min.js",
"postpublish": "npm run dist",
"preghpages": "npm run build && rm -rf gh-pages && cp -r examples gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"gh-pages": "npm run ghpages",
"test": "karma start ./tests/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cemkod/aframe-fps-look-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"camera",
"fps",
"aframe-vr",
"vr",
"mouse-capture",
"mozvr",
"webvr"
],
"author": "Cem Uzunoglu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cemkod/aframe-fps-look-component/issues"
},
"homepage": "https://github.com/cemkod/aframe-fps-look-component#readme",
"devDependencies": {
"aframe-core": "^0.1.0",
"browserify": "^12.0.1",
"browserify-css": "^0.8.3",
"budo": "^7.1.0",
"chai": "^3.4.1",
"chai-shallow-deep-equal": "^1.3.0",
"ghpages": "0.0.3",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-sinon-chai": "^1.1.0",
"mocha": "^2.3.4",
"webpack": "^1.12.9"
}
}