-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.05 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
{
"name": "adios",
"version": "1.3",
"description": "Adios: One-stop solution for Google Ads image assets management",
"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",
"build-ui": "npm run build --prefix src/ui",
"license": "license-check-and-add add -f license-config.json",
"test": "jest test/ --passWithNoTests --detectOpenHandles",
"test-ui": "npm run test --prefix src/ui",
"deploy": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-dev.json .clasp.json && npm run build-ui && npm run deploy-ui && clasp push -f",
"deploy-no-ui": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-dev.json .clasp.json && clasp push -f",
"deploy-ui": "node deploy-ui.mjs",
"deploy:prod": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-prod.json .clasp.json && npm run build-ui && npm run deploy-ui && clasp push",
"serve-ui": "(cd src/ui && ng serve)",
"postinstall": "(cd src/ui && npm install)"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@google/clasp": "^3.3.0",
"@types/google-apps-script": "^2.0.8",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"gts": "^7.0.0",
"jest": "^30.3.0",
"license-check-and-add": "^4.0.5",
"ncp": "^2.0.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-prettier": "^4.1.2",
"rollup-plugin-typescript2": "^0.37.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
}
}