-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@sinch/node-red-mailgun",
"version": "1.1.0",
"author": "Sinch AB",
"description": "Package of Mailgun nodes for Node-RED",
"homepage": "https://www.sinch.com/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sinch/node-red-mailgun.git"
},
"keywords": [
"node-red"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext .js .",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"No tests specified atm\" && exit 0"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"sinch-send-email": "src/nodes/send-email/send-email.js",
"sinch-received-email": "src/nodes/received-email/received-email.js",
"sinch-mailgun-api": "src/api/index.js"
}
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-nodejs": "2.0.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-html": "5.0.5",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-security": "1.4.0",
"node-red": "3.0.2",
"prettier": "1.18.2"
},
"dependencies": {
"form-data": "4.0.0",
"mailgun.js": "6.0.1"
}
}