-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
{
"name": "gas-clasp-starter",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"build": "npm run lint && npm run test && rimraf dist && webpack && cpx src/appsscript.json dist && cpx \"src/**/*.html\" dist",
"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",
"devDependencies": {
"@types/google-apps-script": "1.0.37",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"cpx": "1.5.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"gas-webpack-plugin": "1.2.3",
"jest": "26.5.3",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "26.4.1",
"ts-loader": "8.0.5",
"typescript": "4.0.3",
"webpack": "4.42.0",
"webpack-cli": "4.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}