-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
60
61
{
"name": "aframe-room-component",
"version": "0.4.2",
"description": "An A-Frame component for quickly creating rooms connected by doors.",
"main": "./index.js",
"cdn": "./dist/aframe-room-component.min.js",
"scripts": {
"dist:dev": "webpack --config webpack.config.js",
"dist:prd": "webpack --config webpack.prod.config.js",
"dist": "npm run dist:prd && npm run dist:dev",
"ghpages": "ghpages",
"lint": "semistandard -v | snazzy",
"prepublish": "npm run dist",
"start:https": "webpack serve --progress --open --server-type https",
"start": "webpack serve --progress --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omgitsraven/aframe-room-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"room"
],
"author": "Hazel Fraticelli <omgitsraven@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omgitsraven/aframe-room-component/issues"
},
"homepage": "https://github.com/omgitsraven/aframe-room-component#readme",
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/preset-env": "7.20.2",
"babel-loader": "9.1.2",
"ghpages": "0.0.10",
"semistandard": "16.0.1",
"snazzy": "9.0.0",
"terser-webpack-plugin": "5.3.7",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1",
"webpack": "5.76.3"
},
"peerDependencies": {
"aframe": ">=1.2.0"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}