-
Notifications
You must be signed in to change notification settings - Fork 6
/
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-layout-component",
"version": "1.1.0",
"description": "3D layout component and helpers for A-Frame VR.",
"main": "index.js",
"scripts": {
"build": "browserify examples/main.js -o examples/build.js",
"dev": "budo examples/main.js:build.js --dir examples --port 8005 --live --open",
"dist": "webpack index.js dist/aframe-layout-component.js && webpack -p index.js dist/aframe-layout-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": "git+https://github.com/ngokevin/aframe-layout-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"layout",
"aframe-vr",
"vr",
"aframe-layout",
"mozvr",
"webvr"
],
"author": "Kevin Ngo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngokevin/aframe-layout-component/issues"
},
"homepage": "https://github.com/ngokevin/aframe-layout-component#readme",
"devDependencies": {
"aframe": "^0.2.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"
}
}