-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.2 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
{
"name": "pelias-dbclient-upgrade",
"version": "1.0.6",
"description": "Database client for Pelias import pipelines",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node test/run.js | tap-spec",
"lint": "jshint .",
"validate": "npm ls",
"ci": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skytik/pelias-dbclient-upgrade.git"
},
"keywords": [
"pelias",
"elasticsearch",
"client",
"stream"
],
"author": "mapzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/skytik/pelias-dbclient-upgrade/issues"
},
"homepage": "https://github.com/skytik/pelias-dbclient-upgrade",
"devDependencies": {
"intercept-stdout": "^0.1.2",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.1.3",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"dependencies": {
"@elastic/elasticsearch": "^7.15.0",
"@hapi/joi": "^16.0.0",
"pelias-config": "^5.0.1",
"pelias-logger": "^1.5.1",
"through2": "^4.0.2"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"success": []
},
"directories": {
"test": "test"
}
}