-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@quangvinh2080/google-drive-cli",
"description": "A simple helper cli to interact with google drive.",
"version": "1.0.0",
"bin": {
"google-drive": "./bin/run"
},
"bugs": "https://github.com/quangvinh2080/google-drive-cli/issues",
"dependencies": {
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-help": "^5.1.12",
"cli-ux": "^5.4.5",
"googleapis": "^84.0.0",
"husky": "^7.0.0",
"lodash.get": "^4.4.2",
"mime-types": "^2.1.35",
"semantic-release": "^17.0.6",
"tslib": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@types/chai": "^4.2.11",
"@types/lodash.get": "^4.4.6",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"chai": "^4.2.0",
"mocha": "^10.0.0",
"nyc": "^15.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/quangvinh2080/google-drive-cli",
"keywords": [
"oclif",
"cli",
"google drive"
],
"author": "quangvinh2080 <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "google-drive",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"about": {
"description": "About your drive"
},
"files": {
"description": "Manage files"
},
"drives": {
"description": "Manage drives"
}
}
},
"repository": "quangvinh2080/google-drive-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"version": "oclif-dev readme --multi && sh ./bin/clean.sh && git add README.md docs/*.md",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme --multi",
"test": "nyc mocha \"test/**/*.test.ts\"",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"types": "lib/index.d.ts"
}