forked from pelias/openstreetmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
81
82
83
84
85
{
"name": "pelias-openstreetmap",
"version": "0.0.0-semantic-release",
"author": "mapzen",
"description": "Pelias openstreetmap utilities",
"homepage": "https://github.com/mapzen/pelias-openstreetmap",
"license": "MIT",
"main": "index.js",
"scripts": {
"download": "node util/download_data.js",
"coverage": "node_modules/.bin/istanbul cover test/run.js",
"end-to-end": "export NODE_ENV=test && npm run pretest && node test/end-to-end.js;",
"lint": "jshint .",
"pretest": "test/pretest.sh",
"start": "node --max_old_space_size=4096 index.js",
"test": "NODE_ENV=test npm run units",
"travis": "npm run check-dependencies && node ./test/travis-config.js && npm test && npm run end-to-end",
"units": "node test/run.js | tap-spec",
"validate": "npm ls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-dependencies": "node_modules/.bin/npm-check --production"
},
"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"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=1.4.3",
"elasticsearch": ">=1.3.4"
},
"dependencies": {
"async": "^2.0.0",
"combined-stream": "^1.0.5",
"extend": "^3.0.0",
"fs-extra": "^4.0.0",
"geolib": "^2.0.17",
"is-object": "^1.0.1",
"iso-639-3": "^1.0.0",
"joi": "^12.0.0",
"lodash": "^4.17.4",
"merge": "^1.2.0",
"pbf2json": "4.4.0",
"pelias-address-deduplicator": "1.1.0",
"pelias-config": "2.13.0",
"pelias-dbclient": "2.3.0",
"pelias-logger": "0.3.0",
"pelias-model": "5.2.0",
"pelias-wof-admin-lookup": "4.4.1",
"through2": "^2.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"colors": "^1.1.2",
"deep-diff": "^0.3.2",
"event-stream": "^3.3.2",
"istanbul": "^0.4.3",
"jshint": "^2.8.0",
"naivedb": "^1.0.7",
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
"pelias-mock-logger": "^1.0.1",
"precommit-hook": "^3.0.0",
"proxyquire": "^1.7.10",
"semantic-release": "^8.0.1",
"taginfo": "^1.0.1",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"tmp": "0.0.33"
},
"pre-commit": [
"lint",
"validate",
"test",
"check-dependencies"
]
}