-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
117 lines (117 loc) · 3.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@jsverse/transloco-keys-manager",
"version": "6.0.0",
"description": "Extract translatable keys from projects that uses Transloco",
"engines": {
"node": ">=18.13.0"
},
"type": "module",
"exports": {
".": {
"import": "./public-api.js",
"types": "./public-api.d.ts"
},
"./marker": {
"import": "./marker.js",
"types": "./marker.d.ts"
}
},
"bin": {
"transloco-keys-manager": "index.js"
},
"scripts": {
"release": "standard-version --infile ./CHANGELOG.md",
"commit": "git-cz",
"test": "cross-env PRODUCTION=true node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "npm run prettier && tsc --watch",
"prebuild": "npm run clean:dist",
"build": "tsc && tsc-alias",
"postbuild": "node ./scripts/post-build.js",
"clean:dist": "rimraf dist",
"prettier": "prettier --write src/**/*.ts && prettier --write __tests__/*.ts",
"pre-commit": "lint-staged"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsverse/transloco-keys-manager.git"
},
"keywords": [
"angular",
"angular 2",
"i18n",
"extract",
"transloco",
"translate",
"keys",
"tool",
"cli",
"webpack"
],
"author": "Shahar Kazaz",
"bugs": {
"url": "https://github.com/jsverse/transloco-keys-manager/issues"
},
"homepage": "https://github.com/jsverse/transloco-keys-manager#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@angular/compiler": "^18.1.0",
"@jsverse/transloco-utils": "7.0.1",
"@jsverse/utils": "1.0.0-beta.3",
"@phenomnomnominal/tsquery": "6.1.3",
"chalk": "5.3.0",
"cheerio": "1.0.0-rc.12",
"cli-table3": "0.6.1",
"command-line-args": "5.2.1",
"command-line-usage": "7.0.1",
"cosmiconfig": "9.0.0",
"debug": "4.3.5",
"deep-diff": "1.0.2",
"flat": "6.0.1",
"fs-extra": "11.2.0",
"gettext-parser": "8.0.0",
"glob": "10.3.10",
"jsonc-parser": "3.2.1",
"ora": "8.0.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.0",
"@angular/compiler-cli": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "18.6.0",
"@commitlint/config-angular": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/debug": "4.1.12",
"@types/deep-diff": "1.0.5",
"@types/fs-extra": "11.0.4",
"@types/gettext-parser": "^4.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.0.1",
"cross-env": "7.0.3",
"git-cz": "4.9.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-preset-angular": "14.2.4",
"lint-staged": "15.2.2",
"lodash.isequal": "4.5.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"standard-version": "9.5.0",
"terser": "5.27.1",
"ts-node": "10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "5.5.4"
}
}