-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.6 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
{
"name": "feed-gen",
"version": "0.0.0",
"description": "",
"main": "build/index.js",
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"clean": "rimraf build dist",
"lint": "npm run license && eslint --fix --no-error-on-unmatched-pattern src/ test/",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run clean && npm run bundle && npm run copy-static && ncp appsscript.json dist/appsscript.json",
"copy-static": "mkdirp dist/static && ncp src/static/ dist/static",
"license": "license-check-and-add add -f license-config.json",
"test": "jest test/ --passWithNoTests --detectOpenHandles",
"deploy": "npm run lint && npm run test && npm run build && ncp .clasp-dev.json .clasp.json && clasp push -f",
"deploy:prod": "npm run lint && npm run test && npm run build && ncp .clasp-prod.json .clasp.json && clasp push"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.64",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"jest": "^29.5.0",
"license-check-and-add": "^4.0.5",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.23.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-prettier": "^3.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}