forked from sendgrid/sendgrid-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"author": "SendGrid <[email protected]> (sendgrid.com)",
"contributors": [
"Kyle Partridge <[email protected]>",
"David Tomberlin <[email protected]>",
"Swift <[email protected]>",
"Brandon West <[email protected]>",
"Scott Motte <[email protected]>"
],
"name": "sendgrid",
"description": "Official SendGrid NodeJS library.",
"version": "1.3.0",
"homepage": "http://sendgrid.com",
"repository": {
"type": "git",
"url": "git://github.com/sendgrid/sendgrid-nodejs.git"
},
"engines": {
"node": ">= 0.4.7"
},
"dependencies": {
"mime": "^1.2.9",
"request": "^2.40.0",
"lodash": "^2.0.0",
"smtpapi": "^1.0.4"
},
"devDependencies": {
"dotenv": "0.0.2",
"mocha": ">= 0.9.0",
"chai": ">= 0.1.6",
"nock": "^0.16.0",
"sinon": "^1.6.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --grep '#skip' --invert",
"skipped": "./node_modules/.bin/mocha --grep '#skip'"
},
"optionalDependencies": {}
}