-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "aframe-stereo-component",
"version": "1.3.0",
"description": "Stereoscopic component for A-Frame VR.",
"main": "index.js",
"scripts": {
"build": "browserify examples/main.js -o examples/build.js",
"dev": "budo examples/main.js:build.js --ssld --dir examples --port 8000 --live --open",
"dist": "webpack browser.js dist/aframe-stereo-component.js && webpack -p browser.js dist/aframe-stereo-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",
"test": "karma start ./tests/karma.conf.js",
"unboil": "node scripts/unboil.js"
},
"repository": {
"type": "git",
"url": "https://github.com/oscarmarinmiro/aframe-stereo-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"layout",
"aframe-vr",
"vr",
"aframe-layout",
"mozvr",
"webvr",
"stereo",
"stereoscopic",
"video",
"equirectangular"
],
"author": "Óscar Marín Miró <[email protected]> @oscarmarinmiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/oscarmarinmiro/aframe-stereo-component/issues"
},
"homepage": "https://github.com/oscarmarinmiro/aframe-stereo-component#readme",
"devDependencies": {
"browserify": "^12.0.1",
"browserify-css": "^0.8.3",
"budo": "^7.1.0",
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.0",
"ghpages": "0.0.3",
"inquirer": "^0.12.0",
"karma": "^6.4.0",
"karma-browserify": "^4.4.2",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mocha": "^10.0.0",
"shelljs": ">=0.8.5",
"webpack": "^1.12.9"
}
}