-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
60 lines (60 loc) · 1.41 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
60
{
"name": "mailgun-js",
"description": "Simple Node.js helper module for Mailgun API",
"keywords": [
"email",
"mailgun"
],
"version": "0.23.0",
"homepage": "https://github.com/bojand/mailgun-js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/mailgun-js.git"
},
"bugs": {
"url": "http://github.com/bojand/mailgun-js/issues"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./lib/mailgun.js",
"dependencies": {
"async": "^2.6.1",
"debug": "^4.1.0",
"form-data": "^2.3.3",
"inflection": "~1.12.0",
"is-stream": "^1.1.0",
"path-proxy": "~1.0.0",
"promisify-call": "^2.0.2",
"proxy-agent": "^3.1.1",
"tsscmp": "^1.0.6"
},
"author": {
"name": "Bojan Djurkovic <[email protected]>"
},
"devDependencies": {
"clone": "^2.1.2",
"mocha": "~5.2.0",
"nodemailer": "^4.6.8",
"request": "^2.88.0",
"sinon": "^7.1.0",
"standard": "^12.0.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha --ui exports --slow 1500ms --timeout 10000ms --reporter spec",
"lint": "standard lib/**/*.js && standard --env mocha test/**/*.js",
"lint:fix": "standard --fix lib/**/*.js && standard --env mocha --fix test/**/*.js",
"docs": "./bin/docs"
},
"directories": {
"test": "test"
},
"standard": {
"env": {
"node": true,
"mocha": true
}
}
}