-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 875 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
{
"name": "postman",
"version": "1.0.0",
"description": "Sends emails reliably (supports failover) using services such as Sendgrid and Mailgun",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -- tests/**/*.spec.js tests/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmjmdr/postman.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nmjmdr/postman/issues"
},
"homepage": "https://github.com/nmjmdr/postman#readme",
"dependencies": {
"biguint-format": "^1.0.0",
"bunyan": "^1.8.12",
"flake-idgen": "^1.1.0",
"form-data": "^2.3.2",
"mailgun-js": "^0.16.0",
"request": "^2.83.0",
"restify": "^6.3.4",
"strummer": "^2.4.4"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.1",
"sinon": "^4.4.2"
}
}