-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 819 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 819 Bytes
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": "node-gmail-api",
"version": "1.0.1",
"description": "Interacts with the gmail api, fetching emails",
"main": "index.js",
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SpiderStrategies/node-gmail-api"
},
"keywords": [
"gmail",
"gmail-api"
],
"author": "Nathan Bowser <nathan.bowser@spiderstrategies.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpiderStrategies/node-gmail-api/issues"
},
"homepage": "https://github.com/SpiderStrategies/node-gmail-api",
"dependencies": {
"multiparty": "^4.2.2",
"request": "^2.40.0",
"split": "^0.3.0",
"stream-stream": "^1.2.6",
"through2": "^2.0.0"
},
"devDependencies": {
"nock": "^0.44.3",
"tape": "^2.14.0"
}
}