This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "three-quickvr",
"description": "Get started with VR in THREE.js... QUICK.",
"version": "1.2.1",
"repository": "https://github.com/halvves/three-quickvr.git",
"bugs": {
"url": "https://github.com/halvves/three-quickvr/issues"
},
"author": "halvves <hi@halvves.com>",
"license": "MIT",
"keywords": [
"three",
"threejs",
"vr",
"webvr",
"3d",
"three vr"
],
"main": "dist/quickvr.js",
"jsnext:main": "src/quickvr.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "npm run lint",
"build": "babel src --out-dir dist",
"prepare": "npm run build",
"prepublish": "npm run build",
"lint": "eslint quickvr.js"
},
"pre-commit": {
"run": [
"lint"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "google",
"globals": {
"document": "true",
"window": "true"
},
"rules": {
"max-len": [
1,
120
],
"require-jsdoc": [
0
]
}
},
"dependencies": {
"three-vrcontrols-module": "^2.2.1",
"three-vreffect-module": "^2.2.0",
"webvr-polyfill": "^0.9.39",
"webvr-ui": "^0.10.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"pre-commit": "^1.2.2",
"three": "^0.92.0"
},
"peerDependencies": {
"three": "^0.92.0"
}
}