-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 946 Bytes
/
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
{
"name": "gmail-scripts",
"version": "1.0.0",
"private": true,
"description": "Automation for mundane GMail tasks",
"keywords": [
"gmail",
"google",
"clasp",
"appsscript"
],
"homepage": "https://github.com/Teomik129/Gmail-Scripts#readme",
"bugs": {
"url": "https://github.com/Teomik129/Gmail-Scripts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teomik129/Gmail-Scripts.git"
},
"license": "MIT",
"author": {
"name": "Jules Amosah",
"email": "[email protected]"
},
"type": "module",
"scripts": {
"lint": "dprint fmt",
"test": "uvu . test.js",
"build": "cpy main.js appsscript.json dist/",
"push": "clasp push",
"deploy": "redrun lint build push"
},
"devDependencies": {
"@google/clasp": "^2.4.1",
"cpy-cli": "^3.1.1",
"dprint": "^0.15.4",
"redrun": "^9.0.1",
"sinon": "^11.1.2",
"uvu": "^0.5.1"
}
}