-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "cardbuilder",
"version": "0.0.19",
"description": "A helper library to create Google Workspace Add-on UIs",
"keywords": [
"Google Workspace",
"Zzapps",
"Google Card UI"
],
"repository": {
"type": "git",
"url": "https://github.com/zzapps/cardbuilder"
},
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage && node scripts/generateCoverage",
"build": "rm -rf ./dist && tsc",
"release": "npm run build && npm publish"
},
"author": "Niels Kersic <niels@zzapps.nl>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-istanbul": "^1.1.0",
"badge-maker": "^3.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-promise": "^6.1.1",
"fs": "^0.0.1-security",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}