-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.15 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
{
"name": "@abetomo/google-drive-cleaner",
"version": "2.1.2",
"description": "A tool to remove files on Google Drive.",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "jest"
},
"bin": {
"google-drive-cleaner": "bin/google-drive-cleaner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abetomo/google-drive-cleaner.git"
},
"keywords": [
"google",
"drive",
"remove",
"cleaner"
],
"author": "abetomo",
"license": "MIT",
"bugs": {
"url": "https://github.com/abetomo/google-drive-cleaner/issues"
},
"homepage": "https://github.com/abetomo/google-drive-cleaner#readme",
"dependencies": {
"commander": "^12.0.0",
"full-width-of-terminal": "^2.1.0",
"googleapis": "^144.0.0"
},
"files": [
"LICENSE",
"README.md",
"__mocks__",
"bin",
"index.js",
"lib",
"package.json"
],
"publishConfig": {
"access": "public"
},
"jest": {
"collectCoverage": true
},
"engines": {
"node": ">= 14.0.0"
},
"devDependencies": {
"jest": "^29.6.3",
"standard": "^17.1.0"
}
}