-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 937 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 937 Bytes
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
{
"name": "cell-reminders",
"version": "2.0.0",
"description": "Google Sheets add-on for creating linked to Google Calendar",
"main": "src/Code.js",
"scripts": {
"version:patch": "npm version patch && git push --follow-tags",
"version:minor": "npm version minor && git push --follow-tags",
"version:major": "npm version major && git push --follow-tags",
"deploy": "clasp push",
"pull": "clasp pull",
"push": "clasp push",
"open": "clasp open",
"logs": "clasp logs",
"release": "npm run version:patch && npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/GAchuzia/cell-reminders.git"
},
"keywords": [
"google-sheets",
"google-calendar",
"reminders",
"add-on",
"apps-script"
],
"author": "Grant Achuzia",
"license": "MIT",
"devDependencies": {
"@google/clasp": "^2.4.2"
},
"engines": {
"node": ">=14.0.0"
}
}