-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
executable file
·46 lines (46 loc) · 1.31 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
{
"name": "node-google-drive",
"version": "1.1.2",
"description": "Library to operate with Google Drive API v3 from Node.js, using system user tokens or personal keys",
"main": "index.js",
"scripts": {
"test": "DEBUG=node-google-drive:* ava test/*.test.js --tap | tap-diff",
"test:verbose": "DEBUG=node-google-drive:* ava test/*.test.js --serial --verbose",
"test:serial": "DEBUG=node-google-drive:* ava test/*.test.js --serial --tap | tap-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HuasoFoundries/node-google-drive.git"
},
"keywords": [
"google",
"drive",
"google",
"drive"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/HuasoFoundries/node-google-drive/issues"
},
"homepage": "https://github.com/HuasoFoundries/node-google-drive#readme",
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"file-type": "^7.6.0",
"google-auth-library": "^0.12.0",
"googleapis": "^23.0.0",
"lodash": "^4.17.11",
"read-chunk": "^2.1.0",
"readline": "^1.3.0"
},
"devDependencies": {
"ava": "^2.4.0",
"babel-eslint": "^8.1.2",
"documentation": "^9.3.1",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"param-links": "^1.0.2",
"tap-diff": "^0.1.1"
}
}