-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "micro-data-service",
"version": "0.5.0",
"description": "Hosts vector tiles to be used in conjuction with the OSM Tasking Manager.",
"main": "index.js",
"scripts": {
"test": "npm run build && npm run ava && npm run lint",
"docker-test": "docker build -t mds . && docker run --rm -it mds npm run test",
"ava": "nyc ava",
"build": "tsc",
"start": "node index.js",
"lint": "tslint app/**.ts tests/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osmottawa/micro-data-service.git"
},
"author": "Denis Carriere",
"contributors": [
"Denis Carriere <[email protected]>"
],
"bugs": {
"url": "https://github.com/osmottawa/micro-data-service/issues"
},
"homepage": "https://github.com/osmottawa/micro-data-service#readme",
"dependencies": {
"@turf/bbox-polygon": "^3.7.0",
"@turf/distance": "^3.7.0",
"@turf/explode": "^3.7.0",
"@turf/helpers": "^3.6.3",
"@turf/intersect": "^3.7.0",
"@turf/nearest": "^3.7.0",
"@turf/turf": "^3.7.1",
"@turf/within": "^3.7.0",
"body-parser": "^1.15.2",
"cheap-ruler": "^2.4.1",
"d3-queue": "^3.0.3",
"express": "^4.14.0",
"geobuf": "^3.0.0",
"geocoder-geojson": "^1.9.1",
"geojson2osm-es6": "^0.1.2",
"global-mercator": "^1.3.5",
"pbf": "^3.0.2",
"sequelize": "^3.25.0",
"sqlite3": "^3.1.4",
"tilebelt": "^1.0.1",
"vector-tile": "^1.3.0"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/cheap-ruler": "^2.4.1",
"@types/d3-queue": "^3.0.4",
"@types/express": "^4.0.33",
"@types/node": "^6.0.46",
"@types/sequelize": "^4.0.39",
"@types/tilebelt": "^1.0.1",
"ava": "^0.16.0",
"coveralls": "^2.11.13",
"nyc": "^8.3.0",
"ts-node": "^1.7.0",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"ava": {
"files": [
"tests/*.tests.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
}
}