forked from bartholomej/ngx-translate-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.58 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
{
"name": "@bartholomej/ngx-translate-extract",
"version": "8.0.2",
"description": "Extract strings from projects using ngx-translate",
"author": "Kim Biesbjerg <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"deploy-to-defacto": "npm run build && cp -r dist ../wywiwyg/defacto/src/frontend/defacto/node_modules/ngx-translate-extract/ && cp -r dist ../wywiwyg/defacto/src/frontend/defacto/node_modules/@biesbjerg/ngx-translate-extract/ && cp -r dist ../wywiwyg/defacto/src/frontend/defacto/node_modules/@bartholomej/ngx-translate-extract/",
"watch": "npm run clean && tsc --watch",
"clean": "rimraf ./dist",
"lint": "tslint --force './src/**/*.ts'",
"test": "cross-env TS_NODE_PROJECT=\"tsconfig.spec.json\" mocha -r ts-node/register tests/**/*.spec.ts",
"publish:next": "npm run build && npm publish --tag next --access public",
"prepare": "husky install"
},
"devDependencies": {
"@types/braces": "^3.0.1",
"@types/chai": "^4.3.3",
"@types/flat": "^5.0.2",
"@types/gettext-parser": "4.0.1",
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^16",
"braces": "^3.0.2",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.10",
"typescript": "^4.5.2"
},
"dependencies": {
"@angular/compiler": "^13.1.2",
"@phenomnomnominal/tsquery": "^4.1.1",
"boxen": "^6.2.1",
"colorette": "^2.0.16",
"flat": "^5.0.2",
"gettext-parser": "^4.2.0",
"glob": "^7.2.0",
"path": "^0.12.7",
"terminal-link": "^3.0.0",
"yargs": "^17.5.1"
},
"peerDependencies": {
"@angular/compiler": ">=13.0.0",
"typescript": ">=4.4.0"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
],
"bin": {
"ngx-translate-extract": "bin/cli.js"
},
"prettier": {
"trailingComma": "none",
"printWidth": 145,
"useTabs": true,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartholomej/ngx-translate-extract.git"
},
"keywords": [
"angular",
"ionic",
"ngx-translate",
"extract",
"extractor",
"translate",
"translation",
"i18n",
"gettext"
],
"bugs": {
"url": "https://github.com/bartholomej/ngx-translate-extract/issues"
},
"homepage": "https://github.com/bartholomej/ngx-translate-extract",
"engines": {
"node": ">=14"
},
"config": {},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}