forked from exokitxr/exokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "exokit",
"version": "0.0.525",
"description": "Native VR and AR engine for JavaScript",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"exokit": "src/index.js"
},
"main": "src/index.js",
"scripts": {
"build": "node-gyp build",
"debug": "ndb",
"install": "node ./scripts/preinstall.js && node-gyp configure --msvs_version=2017 && node-gyp rebuild",
"lint": "eslint src tests",
"rebuild": "shx rm -rf node_modules && npm cache clean --force && npm install",
"serve": "serve examples",
"start": "node --experimental-vm-modules .",
"test": "node node_modules/mocha/bin/mocha --full-trace --exit --bail --timeout 5000 tests/unit/__setup.test.js tests/unit/*.test.js tests/unit/**/*.test.js",
"test:one": "node node_modules/mocha/bin/mocha --full-trace --exit --bail --timeout 5000 tests/unit/__setup.test.js",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exokitxr/exokit.git"
},
"keywords": [
"web",
"browser",
"native",
"webgl",
"webvr",
"webxr",
"vr",
"ar",
"vive",
"oculus",
"magic leap"
],
"author": "Avaer Kazmer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/exokitxr/exokit/issues"
},
"homepage": "https://github.com/exokitxr/exokit#readme",
"dependencies": {
"@rgrove/parse-xml": "^1.1.1",
"css": "^2.2.4",
"events": "^3.0.0",
"fake-indexeddb": "^2.0.4",
"find": "^0.2.9",
"he": "^1.1.1",
"history": "^4.9.0",
"hterm-repl": "0.0.10",
"keycode": "^2.2.0",
"leapmotion": "0.0.4",
"libnode.a": "0.0.12",
"libnode.a-android": "0.0.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"murmurhash-js": "^1.0.0",
"nan": "^2.14.0",
"native-audio-deps": "0.0.65",
"native-browser-deps": "0.0.16",
"native-browser-deps-magicleap": "0.0.5",
"native-canvas-deps": "0.0.53",
"native-graphics-deps": "0.0.22",
"native-oculus-deps": "0.0.2",
"native-oculus-mobile-deps": "0.0.2",
"native-openvr-deps": "0.0.19",
"native-video-deps": "0.0.35",
"native-webrtc-deps": "0.0.45",
"node-ipc": "^9.1.1",
"parse-int": "^1.0.2",
"parse5": "^5.0.0",
"redirect-output": "^1.0.0",
"rimraf": "^2.6.2",
"unescape": "^1.0.1",
"webgl-to-opengl": "0.0.16",
"window-fetch": "0.0.13",
"window-ls": "0.0.1",
"window-selector": "0.0.8",
"window-xhr": "0.0.42",
"ws": "^6.2.0"
},
"optionalDependencies": {
"electron": "^5.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.2.0",
"express": "^4.16.3",
"mocha": "^6.0.0-1",
"serve": "^9.4.0",
"shx": "^0.3.2"
}
}