forked from pelias/openstreetmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.97 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
{
"name": "pelias-openstreetmap",
"version": "0.0.0-development",
"engines": {
"node": ">=10.0.0"
},
"author": "pelias",
"description": "Pelias openstreetmap utilities",
"homepage": "https://github.com/mapzen/pelias-openstreetmap",
"license": "MIT",
"main": "index.js",
"scripts": {
"download": "./bin/download",
"coverage": "node_modules/.bin/istanbul cover test/run.js",
"end-to-end": "export NODE_ENV=test && node test/end-to-end.js;",
"lint": "jshint .",
"start": "./bin/start",
"test": "npm run units",
"travis": "node ./test/travis-config.js && npm test && npm run end-to-end",
"units": "./bin/test",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/mapzen/pelias-openstreetmap.git"
},
"keywords": [
"pelias",
"stream",
"openstreetmap",
"elasticsearch"
],
"bugs": {
"url": "https://github.com/mapzen/pelias-openstreetmap/issues"
},
"dependencies": {
"async": "^3.0.1",
"combined-stream": "^1.0.5",
"extend": "^3.0.0",
"fs-extra": "^8.0.0",
"is-object": "^1.0.1",
"iso-639-3": "^1.0.0",
"joi": "^14.0.0",
"lodash": "^4.17.4",
"merge": "^1.2.0",
"pbf2json": "^6.1.0",
"pelias-blacklist-stream": "^1.0.0",
"pelias-config": "^4.8.0",
"pelias-dbclient": "^2.13.0",
"pelias-logger": "^1.2.1",
"pelias-model": "^7.1.0",
"pelias-wof-admin-lookup": "^6.0.0",
"through2": "^3.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"colors": "^1.1.2",
"deep-diff": "^1.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.10.3",
"naivedb": "^1.0.7",
"pelias-mock-logger": "^1.0.1",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.0.0",
"stream-mock": "^2.0.3",
"taginfo": "^1.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.0.0",
"tmp": "0.1.0"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}