-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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": "moleculer-mailgun",
"version": "0.1.1",
"description": "Moleculer service for mailgun SMTP provider",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YourSoftRun/moleculer-mailgun.git"
},
"keywords": [
"moleculer",
"smtp",
"mailgun"
],
"author": "Hugo Meyronneinc <hugo@yoursoft.run>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YourSoftRun/moleculer-mailgun/issues"
},
"homepage": "https://github.com/YourSoftRun/moleculer-mailgun#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"chunk": "0.0.2",
"mailgun-js": "^0.22.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"eslint-plugin-jest": "^22.7.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"moleculer": "^0.13.9",
"qs": "^6.7.0"
}
}