-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ngx-i18n-extract-regex-cli",
"version": "0.0.12",
"description": "Tool for extracting translations from Angular app using regex",
"bin": {
"ngx-i18n-extract-regex-cli": "bin/index.js"
},
"scripts": {
"start": "yarn tsx bin/index.ts",
"start:watch": "tsc-watch --project tsconfig.json --onSuccess \"yarn start\"",
"build": "tsc",
"postbuild": "copyfiles ./README.md ./LICENSE ./dist && yarn script:prepare-dist",
"local": "npm i -g && ngx-i18n-extract-regex",
"prepare": "husky",
"script:gpr-setup": "yarn tsx scripts/gpr-setup.ts",
"script:prepare-dist": "yarn tsx scripts/prepare-dist.ts",
"postversion": "git push && git push --follow-tags",
"publish:beta": "yarn && yarn build && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \"",
"fix-vulnerabilities": "npx yarn-audit-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Celtian/ngx-i18n-extract-regex-cli.git"
},
"keywords": [
"angular",
"extract",
"i18n",
"ngx",
"regex"
],
"author": {
"name": "Dominik Hladík",
"email": "[email protected]",
"url": "https://github.com/Celtian"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Celtian/ngx-i18n-extract-regex-cli/issues"
},
"homepage": "https://github.com/Celtian/ngx-i18n-extract-regex-cli",
"engines": {
"node": ">= 12",
"npm": "please-use-yarn"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"resolutions": {
"wrap-ansi": "^7.0.0"
}
}