-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 908 Bytes
/
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
{
"name": "pelias-microservice-wrapper",
"version": "0.0.0-development",
"description": "Module that provides a convenience wrapper around HTTP GET microservices",
"main": "index.js",
"scripts": {
"test": "./bin/test",
"lint": "jshint .",
"ci": "npm test",
"validate": "npm ls"
},
"author": "Mapzen",
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/microservice-wrapper.git"
},
"keywords": [
"pelias"
],
"devDependencies": {
"express": "^4.15.2",
"pelias-mock-logger": "^1.3.0",
"proxyquire": "^2.0.0",
"tap-dot": "^2.0.0",
"tape": "^5.0.0"
},
"dependencies": {
"lodash": "^4.17.4",
"pelias-logger": "^1.2.1",
"superagent": "^5.0.6"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"success": []
}
}