-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "decorated-google-drive",
"version": "4.3.1",
"description": "decorate googleapi's Google Drive[tm] client with some useful extensions",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --slow 50 --timeout 60000 > testResults.txt; cat testResults.txt",
"md": "node_modules/.bin/mocha --reporter markdown --slow 50 --timeout 60000 > testDoc.md",
"lint": "eslint index.js; eslint test/index.js",
"go": "npm run lint && npm run test && npm run md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrPaulBrewer/decorated-google-drive.git"
},
"keywords": [
"google-drive",
"upload",
"download",
"path"
],
"author": "drpaulbrewer@eaftc.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrPaulBrewer/decorated-google-drive/issues"
},
"homepage": "https://github.com/DrPaulBrewer/decorated-google-drive#readme",
"devDependencies": {
"assert": "^1.4.1",
"eslint": "^5.9.0",
"googleapis": "^36.0.0",
"mocha": "^5.1.1",
"request": "^2.88.0",
"should": "^13.2.3",
"string-to-stream": "^1.1.1"
},
"dependencies": {
"boom": "^7.3.0",
"digest-stream": "^2.0.0",
"p-reduce": "^1.0.0",
"search-string-for-google-drive": "^1.0.0"
}
}