-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 4.29 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
{
"name": "ngx-translate-cut",
"version": "18.1.0",
"description": "Angular pipe for cutting translations (plugin for ngx-translate)",
"author": "Lukas Bartak <[email protected]> (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 ts-node --project scripts/tsconfig.ts-node.json scripts/gpr-setup",
"test": "ng test",
"coverage": "yarn test --code-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": "ts-node --project scripts/tsconfig.ts-node.json scripts/create-version",
"postinstall": "yarn create:version",
"syncprojects": "ts-node --project scripts/tsconfig.ts-node.json 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": "^18.0.2",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.3",
"@angular/compiler-cli": "^18.0.2",
"@angular/language-service": "^18.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vendure/ngx-translate-extract": "^9.1.1",
"eslint": "^9.4.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.9",
"eslint-plugin-prefer-arrow": "latest",
"husky": "^9.0.11",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.5",
"ng-packagr": "^18.0.0",
"prettier": "^3.3.1",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "~5.4.5"
},
"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"
}
}