forked from mocallu/mailgun-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 951 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
{
"name": "@nuteruls/mailgun-js-sdk",
"version": "1.0.5",
"description": "A simple node mailgun sdk",
"author": "Uladzislau Vasiuk <[email protected]>",
"homepage": "https://github.com/moremi/mailgun-js-sdk",
"repository": {
"type": "git",
"url": "https://github.com/moremi/mailgun-js-sdk.git"
},
"bugs": {
"url": "https://github.com/moremi/mailgun-js-sdk/issues"
},
"keywords": [
"mailgun",
"sdk",
"javascript",
"node"
],
"engines": {
"node": ">=12"
},
"main": "./src/Mailgun.js",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/jest --detectOpenHandles --coverage --config=./jest.config.json",
"lint": "./node_modules/.bin/eslint --fix src"
},
"dependencies": {
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^25.1.0"
}
}