forked from Ionaut/aframe-layout-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"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",
"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": "^1.0.4",
"browserify": "^12.0.1",
"browserify-css": "^0.15.0",
"budo": "^11.6.4",
"chai": "^3.4.1",
"chai-shallow-deep-equal": "^1.3.0",
"envify": "^4.1.0",
"karma": "^5.2.3",
"karma-browserify": "^7.0.0",
"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": "^8.1.3",
"webpack": "^5.1.0"
}
}