-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "gmail-archive-after-script",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"build": "npm run lint && npm run test && rm -rf dist && webpack && cp src/appsscript.json dist",
"login": "clasp login",
"push": "npm run build && clasp push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/howdy39/gas-clasp-starter.git"
},
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"author": "howdy39",
"license": "MIT",
"bugs": {
"url": "https://github.com/howdy39/gas-clasp-starter/issues"
},
"homepage": "https://github.com/howdy39/gas-clasp-starter#readme",
"dependencies": {
"lodash": "^4.17.19",
"purify-ts": "^0.15.1"
},
"devDependencies": {
"@google/clasp": "^2.3.0",
"@types/google-apps-script": ">=1.0.14",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": ">=2.23.0",
"@typescript-eslint/parser": ">=2.23.0",
"chokidar-cli": "^2.1.0",
"eslint": ">=6.8.0",
"eslint-config-prettier": ">=6.10.0",
"eslint-plugin-functional": ">=3.0.1",
"eslint-plugin-prettier": ">=3.1.2",
"gas-webpack-plugin": "^2.3.0",
"jest": "^26.1.0",
"prettier": ">=2.0.5",
"ts-jest": "^26.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}