forked from jsverse/transloco-keys-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3 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": "@ngneat/transloco-keys-manager",
"version": "2.8.0",
"description": "Extract translatable keys from projects that uses Transloco",
"main": "public_api.js",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors init",
"release": "standard-version --infile ./CHANGELOG.md",
"commit": "git-cz",
"test": "PRODUCTION=true jest",
"start": "npm run prettier && tsc --watch",
"prebuild": "npm run clean:dist",
"build": "tsc && npm run uglify",
"postbuild": "node ./scripts/post-build.js",
"build:dev": "tsc && npm run post-build",
"uglify": "terser-folder dist -e -o dist -x .js",
"clean:dist": "rm -rf dist",
"prettier": "prettier --write 'src/**/*.ts' && prettier --write '__tests__/*.ts'",
"conduct": "import-conductor"
},
"license": "MIT",
"bin": {
"transloco-keys-manager": "index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artistgrowth/transloco-keys-manager.git"
},
"keywords": [
"angular",
"angular 2",
"i18n",
"extract",
"transloco",
"translate",
"keys",
"tool",
"cli",
"webpack"
],
"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",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"import-conductor --staged",
"prettier --write"
]
},
"dependencies": {
"@ngneat/transloco-utils": "1.1.2",
"@phenomnomnominal/tsquery": "4.1.0",
"chalk": "4.1.0",
"cheerio": "1.0.0-rc.3",
"cli-table3": "0.6.0",
"command-line-args": "5.1.1",
"command-line-usage": "6.1.0",
"cosmiconfig": "7.0.0",
"debug": "4.1.1",
"deep-diff": "1.0.2",
"flat": "5.0.2",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"ora": "5.0.0",
"os-locale": "5.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.11.0",
"@babel/preset-typescript": "7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cheerio": "^0.22.16",
"@types/cosmiconfig": "6.0.0",
"@types/debug": "^4.1.5",
"@types/deep-diff": "^1.0.0",
"@types/flat": "^5.0.1",
"@types/jest": "26.0.10",
"all-contributors-cli": "6.17.3",
"git-cz": "4.7.0",
"husky": "^4.3.0",
"import-conductor": "^2.0.3",
"jest": "26.4.0",
"lint-staged": "10.2.11",
"lodash.isequal": "4.5.0",
"prettier": "2.0.5",
"standard-version": "9.0.0",
"terser": "5.1.0",
"terser-folder": "2.0.0",
"typescript": "3.9.7"
}
}