-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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": "gmail-cleaner",
"version": "1.0.4",
"description": "quickly delete Gmail emails matching specific label and search query",
"author": "mmta",
"license": "MIT",
"main": "gmail_cleaner.js",
"scripts": {
"test": "jest --silent=false --runInBand --detectOpenHandles --forceExit",
"lint": "eslint ./",
"build": "pkg gmail_cleaner.js --out-path dist/",
"zip-linux": "cd dist && npx bestzip ./gmail_cleaner-linux.zip ./gmail_cleaner-linux",
"zip-win": "cd dist && npx bestzip ./gmail_cleaner-windows.zip ./gmail_cleaner-win.exe",
"zip-osx": "cd dist && npx bestzip ./gmail_cleaner-darwin.zip ./gmail_cleaner-macos",
"zip": "npm run zip-linux && npm run zip-win && npm run zip-osx"
},
"pkg": {
"assets": [
"./lib/client_id.json"
]
},
"dependencies": {
"googleapis": "^68.0.0",
"http-terminator": "^3.2.0",
"table": "^5.4.6",
"yargs": "^16.2.0"
},
"devDependencies": {
"axios": "^1.2.1",
"bestzip": "^2.2.0",
"cd": "^0.3.3",
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.3.1",
"pkg": "^5.8.0",
"tmp": "^0.2.1"
}
}