-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"author": "Terence",
"name": "ts-google-drive",
"description": "Manage google drive easily. Support create folders, upload files, download files, searching, etc..",
"version": "0.0.7",
"homepage": "https://github.com/terence410/ts-google-drive",
"repository": {
"type": "git",
"url": "git://github.com/terence410/ts-google-drive.git"
},
"main": "build/index.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "mocha --exit --timeout 30000 -r ts-node/register tests/*.ts",
"test:coverage": "nyc --reporter=json --reporter=text mocha --exit --timeout 30000 -r ts-node/register tests/*.ts",
"npm:patch": "npm version patch",
"build": "tsc"
},
"dependencies": {
"google-auth-library": "^8.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.10",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"nyc": "^15.1.0",
"googleapis": "^109.0.1"
},
"keywords": [
"google drive",
"upload file",
"drive api v3",
"google cloud"
],
"license": "MIT License"
}