-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.34 KB
/
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
42
{
"author": "Zander Maxwell",
"bugs": {
"url": "https://github.com/axlemax/google-workspace-automator/issues"
},
"description": "",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-typescript": "^7.20.0",
"@babel/preset-env": "^7.20.2",
"@types/node": "*",
"babel-plugin-transform-remove-imports": "^1.7.0",
"eslint": "^8.29.0",
"eslint-config-canonical": "^37.0.3",
"gas-types-detailed": "^1.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"homepage": "https://github.com/axlemax/google-workspace-automator#readme",
"license": "MIT",
"main": "index.ts",
"name": "google-workspace-automator",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/axlemax/google-workspace-automator.git"
},
"scripts": {
"build": "tsc && babel src --out-dir dist --extensions '.ts' --keep-file-extension",
"clean": "rm -rf ./{node_modules}",
"clean-build": "cd ./dist && ls | grep -v '.json' | xargs rm -rf",
"format": "prettier --cache --write .",
"lint": "eslint --fix --cache . --ext .json,.ts,.yaml",
"lint-staged": "lint-staged",
"prepare": "husky install",
"push": "npm run clean-build && npm run format && npm run lint && npm run build && pwd && cd ./dist && clasp push"
},
"version": "1.0.0"
}