-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 990 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 990 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
{
"name": "helper",
"version": "1.0.0",
"description": "Helper scripts for Google Apps Script project",
"main": "index.js",
"scripts": {
"push": "node scripts/project-tools.js push",
"pull": "node scripts/project-tools.js pull",
"open": "node scripts/project-tools.js open",
"status": "node scripts/project-tools.js status",
"watch": "node scripts/project-tools.js watch",
"create": "node scripts/project-tools.js create",
"clone": "node scripts/project-tools.js clone"
},
"keywords": [
"google-apps-script",
"clasp",
"automation"
],
"author": "Michael Stansky",
"license": "MIT",
"dependencies": {
"@google/clasp": "^2.4.2",
"chalk": "^4.1.2",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/google-apps-script": "^1.0.78",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
}
}