generated from billymfl/simple-microservices-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "emailer",
"version": "1.0.0",
"description": "emailer is a microservice that handles sending an email to a customer using the selected API email service. An secondary API email service can be defined to handle failover.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc ./node_modules/mocha/bin/mocha --exit",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billymfl/emailer.git"
},
"keywords": [
"microservice",
"Email",
"Emailer",
"Service",
"Failover",
"API"
],
"author": "Billy Marin",
"license": "MIT",
"bugs": {
"url": "https://github.com/billymfl/emailer/issues"
},
"homepage": "https://github.com/billymfl/emailer#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-google": "^0.14.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.4.2"
},
"dependencies": {
"@hapi/hapi": "^18.3.2",
"@hapi/inert": "^5.2.1",
"@hapi/vision": "^5.5.3",
"axios": "^0.19.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"hapi-swagger": "^10.1.1",
"qs": "^6.9.0",
"striptags": "^3.1.1"
}
}