-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 1.56 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
{
"name": "pelias-interpolation",
"version": "0.0.0-development",
"description": "street address interpolation service",
"homepage": "https://github.com/pelias/interpolation",
"author": "mapzen",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run units",
"funcs": "./bin/funcs",
"units": "./bin/units",
"ci": "npm test && npm run funcs",
"lint": "jshint .",
"validate": "npm ls",
"download-tiger": "./bin/download-tiger",
"build": "./script/build.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/interpolation.git"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"async": "^3.1.0",
"better-sqlite3": "^7.4.3",
"cheerio": "^1.0.0-rc.3",
"cli-table3": "^0.6.0",
"csv-parse": "^4.4.6",
"express": "^4.14.0",
"from2": "^2.3.0",
"jsftp": "^2.0.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"node-postal": "^1.1.2",
"pbf2json": "^6.4.0",
"pelias-config": "^4.0.0",
"pelias-logger": "^1.2.1",
"quadtree": "^1.1.3",
"require-dir": "^1.0.0",
"serve-index": "^1.8.0",
"split2": "^3.0.0",
"superagent": "^5.1.0",
"through2": "^3.0.0",
"through2-batch": "^1.0.1"
},
"devDependencies": {
"jshint": "^2.9.3",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.0.0",
"tap-dot": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}