-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "postmaster-general-http-transport",
"version": "0.0.9",
"description": "HTTP transport module for the postmaster-general microservice library.",
"author": "Ben Whatley",
"repository": {
"type": "git",
"url": "git+https://github.com/darklordzw/postmaster-general-http-transport.git"
},
"keywords": [
"microservices",
"message bus",
"postmaster-general"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/darklordzw/postmaster-general-http-transport/issues"
},
"homepage": "https://github.com/darklordzw/postmaster-general-http-transport#readme",
"main": "index.js",
"files": [
"index.js",
"defaults.json"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint --fix . || exit 0"
},
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"lodash": "^4.17.11",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"peerDependencies": {
"postmaster-general": "5.x",
"postmaster-general-core": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"dirty-chai": "^2.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"postmaster-general-core": "^1.0.1",
"prettier": "^2.2.1",
"sinon": "^9.2.3",
"supertest": "^6.0.1"
}
}