forked from sendgrid/sendgrid-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"author": "SendGrid <dx@sendgrid.com> (sendgrid.com)",
"contributors": [
"Kyle Partridge <kyle.partridge@sendgrid.com>",
"David Tomberlin <david.tomberlin@sendgrid.com>",
"Swift <swift@sendgrid.com>",
"Brandon West <brandon.west@sendgrid.com>",
"Scott Motte <scott.motte@sendgrid.com>",
"Robert Acosta <robert.acosta@sendgrid.com>",
"Elmer Thomas <elmer.thomas@sendgrid.com>",
"Adam Buczynski <me@adambuczynski.com>"
],
"name": "sendgrid",
"description": "Official SendGrid NodeJS library.",
"version": "5.1.2",
"homepage": "https://sendgrid.com",
"repository": {
"type": "git",
"url": "git://github.com/sendgrid/sendgrid-nodejs.git"
},
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"async.ensureasync": "^0.5.2",
"async.queue": "^0.5.2",
"bottleneck": "^1.12.0",
"debug": "^2.2.0",
"lodash.chunk": "^4.2.0",
"mailparser": "^0.6.1",
"sendgrid-rest": "^2.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.1.0",
"mocha": "^2.4.5",
"mocha-sinon": "^1.1.5",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"system-sleep": "^1.0.0-g",
"typescript": "^2.0.0"
},
"scripts": {
"lint": "eslint . --fix",
"test": "mocha",
"test:typescript": "tsc"
},
"typings": "index.d.ts",
"tags": [
"http",
"rest",
"api"
],
"license": "MIT",
"optionalDependencies": {}
}