forked from facebookarchive/react-360
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"private": true,
"name": "react-vr",
"version": "1.1.0",
"description": "A framework for building VR applications with React",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/facebook/react-vr.git"
},
"bugs": "https://github.com/facebook/react-vr/issues",
"main": "Libraries/react-vr.js",
"files": [
"jest/setup.js",
"jest-preset.json",
"lib-assets",
"Libraries",
"LICENSE",
"PATENTS",
"README.md",
"scripts"
],
"peerDependencies": {
"react": "~15.4.1",
"react-native": "~0.42.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^17.0.2",
"babel-preset-react-native": "^1.9.0",
"cross-env": "^3.2.4",
"eslint": "^3.17.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.46.0",
"jest": "^17.0.3",
"jsdom": "^9.10.0",
"prettier": "^1.0.0",
"react": "~15.4.1",
"react-native": "~0.42.0",
"three": "^0.80.1"
},
"scripts": {
"flow": "flow",
"lint": "eslint Libraries/ OVRUI/src/ ReactVR/ react-vr-cli/",
"pretest": "cross-env BABEL_DISABLE_CACHE=1 node jest/prepareE2E.js",
"prettier": "node node_modules/.bin/prettier --print-width 100 --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma es5 --write \"{Libraries,OVRUI/src,react-vr-cli,ReactVR}/**/!(*.bundle).js\"",
"test": "jest --config jest/config-all.json",
"test-unit": "jest --config jest/config-unit.json"
}
}