-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 4.22 KB
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
{
"name": "ngx-translate-cut",
"version": "21.1.0",
"description": "Angular pipe for cutting translations (plugin for ngx-translate)",
"author": "Lukas Bartak <bart@bartweb.cz> (https://github.com/bartholomej)",
"scripts": {
"ng": "ng",
"start:demo": "ng serve",
"start": "ng build ngx-translate-cut --watch",
"build": "ng build ngx-translate-cut --configuration production",
"build:demo": "ng build demo --configuration production",
"deploy:ghpages": "yarn build && yarn build:demo && ngh --dir=dist/demo",
"publish:npmjs": "npm run syncprojects && npm run build && npm publish --folder dist/ngx-translate-cut",
"publish:next": "yarn && yarn syncprojects && yarn build && yarn test --configuration=ci && npm publish --folder dist/ngx-translate-cut --tag next",
"gpr:setup": "yarn tsx scripts/gpr-setup",
"test": "ng test",
"coverage": "ng test --watch=false --coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"translations:extract": "ngx-translate-extract --input ./projects/demo/src --output ./projects/demo/src/assets/i18n/en.json --clean --sort --format namespaced-json --marker _ --format-indentation ' '",
"create:version": "tsx scripts/create-version",
"postinstall": "yarn create:version",
"syncprojects": "tsx scripts/sync-projects",
"version": "npm run syncprojects && git add ./projects/ngx-translate-cut/",
"postversion": "git push && git push --follow-tags",
"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 💥 \"",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "^21.1.4",
"@angular/common": "^21.1.4",
"@angular/compiler": "^21.1.4",
"@angular/core": "^21.1.4",
"@angular/forms": "^21.1.4",
"@angular/platform-browser": "^21.1.4",
"@angular/platform-browser-dynamic": "^21.1.4",
"@angular/router": "^21.1.4",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"angular-eslint": "^21.2.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"typescript-eslint": "^8.55.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.1.4",
"@angular-eslint/builder": "21.2.0",
"@angular-eslint/eslint-plugin": "21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/schematics": "21.2.0",
"@angular-eslint/template-parser": "21.2.0",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.1.4",
"@angular/language-service": "^21.1.4",
"@babel/helper-environment-visitor": "^7.24.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vendure/ngx-translate-extract": "^10.1.3",
"@vitest/coverage-v8": "^4.0.18",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "61.5.0",
"eslint-plugin-prefer-arrow": "latest",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.6",
"ng-packagr": "^21.1.0",
"prettier": "^3.8.1",
"tslint-config-prettier": "^1.18.0",
"tsx": "~4.21.0",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"homepage": "https://github.com/bartholomej/ngx-translate-cut",
"license": "MIT",
"repository": {
"url": "git+https://github.com/bartholomej/ngx-translate-cut.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/ngx-translate-cut/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bartholomej"
},
"keywords": [
"angular",
"ngx",
"translation",
"i18n",
"pipe",
"translate",
"ngx-translate"
],
"files": [
"dist"
],
"engines": {
"node": ">=20.11.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}