This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
{
"name": "webxr-geospatial",
"version": "0.0.1",
"description": "A library that combines the Web geolocation API with WebXR to support geospatial AR",
"main": "XRGeospatialAnchor.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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MozillaReality/webxr-geospatial.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MozillaReality/webxr-geospatial/issues"
},
"homepage": "https://github.com/MozillaReality/webxr-geospatial#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/blairmacintyre/webxr-polyfill.git#minimal-for-app",
"webxr-ios-js": "github:mozilla-mobile/webxr-ios-js"
}
}