-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 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
{
"name": "pelias-dbclient",
"version": "0.0.0-development",
"description": "Database client for Pelias import pipelines",
"engines": {
"node": ">=10.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": "https://github.com/pelias/dbclient"
},
"keywords": [
"pelias",
"elasticsearch",
"client",
"stream"
],
"author": "mapzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/dbclient/issues"
},
"homepage": "https://github.com/pelias/dbclient",
"devDependencies": {
"intercept-stdout": "^0.1.2",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"dependencies": {
"@hapi/joi": "^16.0.0",
"elasticsearch": "^16.0.0",
"pelias-config": "^6.0.0",
"pelias-logger": "^1.2.1",
"through2": "^3.0.0"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"success": []
}
}