-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.8 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
{
"name": "gdrive-node-uploader",
"version": "1.1.5",
"description": "A Node.js library to upload, download, and manage files on Google Drive using a service account.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "tsc && ts-node dist/index.js",
"test:upload": "tsc && ts-node dist/examples/uploadExample.js",
"test:find": "tsc && ts-node dist/examples/checkFileExistsExample.js",
"test:delete": "tsc && ts-node dist/examples/deleteFileExample.js",
"test:download": "tsc && ts-node dist/examples/downloadFileExample.js",
"test:rename": "tsc && ts-node dist/examples/renameFileExample.js",
"test:folderUpload": "tsc && ts-node dist/examples/uploadFolderExample.js",
"test:folderDownload": "tsc && ts-node dist/examples/downloadFolderExample.js",
"test:shareDrive": "tsc && ts-node dist/examples/shareGDriveDirectory.js",
"test:wipeDrive": "tsc && ts-node dist/examples/wipeGDriveExample.js",
"test:streamFile": "tsc && ts-node dist/examples/singleFileStreamExample.js",
"bumpNPublish": "node bump-version.js && npm run build && npm publish"
},
"author": "Wal33D",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"googleapis": "^137.1.0",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/progress": "^2.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/Wal33D/gdrive-node-service-uploader"
},
"bugs": {
"url": "https://github.com/Wal33D/gdrive-node-service-uploader/issues"
},
"homepage": "https://github.com/Wal33D/gdrive-node-service-uploader#readme",
"keywords": [
"google-drive",
"service-account",
"nodejs",
"upload",
"download",
"file-management"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}