-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "batch-delete-email",
"version": "1.0.0",
"description": "bulk delete gmail via api",
"main": "index.js",
"scripts": {
"test": "jest tests/**",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"login": "clasp login",
"clone": "clasp clone",
"pull": "clasp pull",
"docs": "jsdoc2md src/Code.js | node scripts/update-readme.js",
"create-trigger": "clasp run createCustomTrigger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1shooperman/batch-delete-email.git"
},
"author": "1shooperman",
"license": "MIT",
"bugs": {
"url": "https://github.com/1shooperman/batch-delete-email/issues"
},
"homepage": "https://github.com/1shooperman/batch-delete-email#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@google/clasp": "^2.5.0",
"eslint": "^9.18.0",
"eslint-plugin-googleappsscript": "^1.0.5",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/setup.js"
]
}
}