forked from ctrlw/osm4vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "osm4vr",
"version": "0.0.1",
"description": "Travel the world in Virtual Reality, using data from [OpenStreetMap](https://openstreetmap.org/) and relying on the [A-Frame framework](https://aframe.io/) to support VR in the browser. The code in the repository can also be integrated into other projects to add a map to VR scenes and/or load buildings from OpenStreetMap.",
"main": "index.js",
"scripts": {
"dist": "npm run dist:min && npm run dist:max",
"dist:max": "webpack",
"dist:min": "cross-env NODE_ENV=production webpack",
"lint": "semistandard -v | snazzy",
"lint:fix": "semistandard --fix",
"prepublish": "npm run dist",
"start": "webpack serve --progress"
},
"author": "",
"license": "MIT",
"dependencies": {
"osmtogeojson": "https://github.com/tyrasd/osmtogeojson#snyk-fix-65371a4c4920389f7e5127c141088511"
},
"devDependencies": {
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"semistandard": "^17.0.0",
"snazzy": "^9.0.0",
"stream-browserify": "^3.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}