-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "testable-apps-script",
"version": "1.0.0",
"description": "Testable Apps Script",
"scripts": {
"build": "node esbuild.config.js",
"lint": "eslint src/**/*.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clasp": "node_modules/.bin/clasp",
"deploy": "npm run lint && npm run test -- --watchAll=false && node_modules/.bin/clasp push"
},
"private": true,
"repository": "https://github.com/mikfreedman/testable-apps-script",
"author": "Michael Freedman",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@google/clasp": "^3.3.0",
"@types/google-apps-script": "^2.0.9",
"@types/jest": "^30.0.0",
"esbuild": "^0.28.0",
"esbuild-gas-plugin": "^0.10.0",
"eslint": "^10.4.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"type": "module",
"jest": {
"verbose": true,
"preset": "ts-jest/presets/default-esm",
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
}
}
}