forked from jsverse/transloco-keys-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.77 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
{
"name": "@ngneat/transloco-keys-manager",
"version": "3.3.3",
"description": "Extract translatable keys from projects that uses Transloco",
"main": "public_api.js",
"scripts": {
"release": "standard-version --infile ./CHANGELOG.md",
"commit": "git-cz",
"test": "cross-env PRODUCTION=true jest",
"start": "npm run prettier && tsc --watch",
"prebuild": "npm run clean:dist",
"build": "tsc",
"postbuild": "node ./scripts/post-build.js",
"prebuild:dev": "npm run clean:dist",
"build:dev": "tsc",
"postbuild:dev": "node ./scripts/post-build.js dev",
"clean:dist": "rimraf dist",
"prettier": "prettier --write 'src/**/*.ts' && prettier --write '__tests__/*.ts'",
"conduct": "import-conductor",
"pre-commit": "lint-staged"
},
"license": "MIT",
"bin": {
"transloco-keys-manager": "index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngneat/transloco-keys-manager.git"
},
"keywords": [
"angular",
"angular 2",
"i18n",
"extract",
"transloco",
"translate",
"keys",
"tool",
"cli",
"webpack"
],
"author": "Shahar Kazaz",
"maintainers": [
{
"name": "Shahar Kazaz"
},
{
"name": "Netanel Basal"
}
],
"bugs": {
"url": "https://github.com/ngneat/transloco-keys-manager/issues"
},
"homepage": "https://github.com/ngneat/transloco-keys-manager#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"import-conductor --staged",
"prettier --write"
]
},
"dependencies": {
"@angular/compiler": "12.2.6",
"@ngneat/transloco-utils": "^3.0.2",
"@phenomnomnominal/tsquery": "4.1.1",
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.10",
"cli-table3": "0.6.1",
"command-line-args": "5.2.0",
"command-line-usage": "6.1.1",
"cosmiconfig": "7.0.1",
"debug": "4.3.2",
"deep-diff": "1.0.2",
"flat": "5.0.2",
"fs-extra": "10.0.0",
"glob": "7.1.7",
"ora": "5.4.1"
},
"devDependencies": {
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@commitlint/cli": "13.1.0",
"@commitlint/config-angular": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@types/cosmiconfig": "6.0.0",
"@types/debug": "4.1.7",
"@types/deep-diff": "1.0.1",
"@types/flat": "5.0.2",
"@types/jest": "27.0.1",
"cross-env": "7.0.3",
"git-cz": "4.7.0",
"husky": "7.0.4",
"import-conductor": "2.2.5",
"jest": "27.2.0",
"lint-staged": "10.2.11",
"lodash.isequal": "4.5.0",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"standard-version": "9.3.1",
"terser": "5.8.0",
"typescript": "4.4.3"
}
}