-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.81 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.81 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
{
"name": "@peppierre/typesafe-http",
"version": "2.0.0",
"author": "PePPierre <peppierre@gmail.com>",
"description": "Type-safe HTTP client libraries for Angular using various runtime type checking libraries",
"keywords": [
"angular",
"http",
"typescript"
],
"scripts": {
"ng": "ng",
"remove:node-modules": "rm -rf ./workspace/node_modules",
"remove:dist": "rm -rf ./workspace/dist",
"remove:package-lock": "rm -rf ./workspace/package-lock.json",
"remove:eslint:rcjson": "rm -rf ./workspace/.eslintrc.json",
"remove:eslint:rcjs": "rm -rf ./workspace/.eslintrc.json",
"remove:eslint:config": "rm -rf ./workspace/eslint.config.js",
"remove:eslint": "npm run remove:eslint:rcjson && npm run remove:eslint:rcjs && npm run remove:eslint:config",
"remove:npm-cache": "npm cache clean --force",
"pre-prepws": "npm run remove:node-modules && npm run remove:dist && npm run remove:package-lock && npm run remove:eslint && npm run remove:npm-cache",
"post-prepws": "cd ./workspace && npm install && cd ..",
"prepws:ng16": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng16 && npm run post-prepws",
"prepws:ng17": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng17 && npm run post-prepws",
"prepws:ng18": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng18 && npm run post-prepws",
"prepws:ng19": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng19 && npm run post-prepws",
"prepws:ng20": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng20 && npm run post-prepws",
"prepws:ng21": "npm run pre-prepws && node scripts/prepare-version-specific-package.js --npmTag ng21 && npm run post-prepws"
}
}