-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
{
"name": "pelias-whosonfirst",
"version": "0.0.0-development",
"engines": {
"node": ">=10.0.0"
},
"description": "Importer for Who's on First",
"main": "index.js",
"scripts": {
"start": "./bin/start",
"download": "./bin/download",
"test": "./bin/units",
"lint": "jshint .",
"validate": "npm ls",
"ci": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/whosonfirst.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/whosonfirst/issues"
},
"homepage": "https://github.com/pelias/whosonfirst#readme",
"dependencies": {
"@hapi/joi": "^16.1.8",
"async": "^3.0.1",
"better-sqlite3": "^11.5.0",
"combined-stream": "^1.0.5",
"command-exists": "^1.2.9",
"download-file-sync": "^1.0.4",
"iso3166-1": "^0.5.0",
"lodash": "^4.5.1",
"pelias-blacklist-stream": "^1.0.0",
"pelias-config": "^6.0.0",
"pelias-dbclient": "^3.1.0",
"pelias-logger": "^1.2.1",
"pelias-model": "^10.0.0",
"through2": "^3.0.0",
"through2-filter": "^3.0.0",
"through2-map": "^3.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"jshint": "^2.5.6",
"pelias-mock-logger": "^1.1.0",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.0.0",
"stream-mock": "^2.0.5",
"tap-dot": "^2.0.0",
"tape": "^5.0.0",
"temp": "^0.9.0"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}