-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 KB
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
{
"name": "gas-clasp-starter",
"version": "3.0.0",
"description": "gas-clasp-starter project.",
"homepage": "https://github.com/howdy39/gas-clasp-starter",
"main": "build/index.js",
"license": "MIT",
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --fix src/**/*.ts",
"test": "jest --passWithNoTests",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run lint && npm run test && npm run clean && npm run bundle && cpx src/appsscript.json dist",
"push": "npm run build && clasp push"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/google-apps-script": "^2.0.8",
"@types/jest": "^29.5.14",
"cpx2": "^8.0.2",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.7.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"rollup": "^4.60.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.7.1",
"rollup-plugin-typescript2": "^0.37.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}