-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "gas-clasp-starter",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"default:lint": "eslint --fix src/**/*.ts",
"default:build": "yarn default:lint && yarn default:test && rimraf dist && webpack && cpx src/appsscript.json dist && cpx \"src/**/*.html\" dist",
"default:push": "yarn default:build && clasp push",
"default:test": "jest",
"build": "rimraf dist && cpx src/**/*.ts dist && cpx src/appsscript.json dist",
"deploy": "yarn 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": {
"@google/clasp": "2.3.0",
"@types/google-apps-script": "1.0.37",
"@types/jest": "25.2.3",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"cpx": "1.5.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.1",
"gas-webpack-plugin": "1.2.3",
"jest": "26.0.1",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"ts-jest": "26.1.0",
"ts-loader": "6.2.2",
"typescript": "3.8.3",
"webpack": "4.42.0",
"webpack-cli": "3.3.12"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}