forked from MozillaReality/webxr-ios-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "webxr-ios-js",
"version": "0.0.1",
"description": "The JS for WebXR inside Mozilla WebXR Viewer",
"main": "src/XRPolyfill.js",
"directories": {},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"minify": "cross-env NODE_ENV=production rollup -c rollup-minify.config.js",
"start": "npm run build && http-server . -c-1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MozillaReality/webxr-ios-js.git"
},
"keywords": [],
"author": "",
"license": "MPL",
"bugs": {
"url": "https://github.com/MozillaReality/webxr-ios-js/issues"
},
"homepage": "https://github.com/MozillaReality/webxr-ios-js#readme",
"devDependencies": {
"cross-env": "^5.1.3",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"http-server": "^0.10.0",
"webpack": "^3.5.5"
},
"dependencies": {
"gl-matrix": "^2.5.1",
"webxr-polyfill": "git://github.com/mozilla-mobile/webxr-polyfill-for-ios-viewer.git#webxr-ios"
}
}