-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "ngx-extract-i18n-merge-json",
"version": "1.0.9",
"description": "Extract and merge i18n JSON translation files for angular projects.",
"main": "extract-i18n/index.js",
"builders": "builders.json",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"ng-update": {
"migrations": "./schematics/migrations/migrations.json"
},
"publishConfig": {
"@karsa-mistmere:registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/karsa-mistmere/ngx-extract-i18n-merge-json.git"
},
"keywords": [
"angular",
"i18n",
"json"
],
"author": "Karsa Rigó",
"license": "MIT",
"bugs": {
"url": "https://github.com/karsa-mistmere/ngx-extract-i18n-merge-json/issues"
},
"homepage": "https://github.com/karsa-mistmere/ngx-extract-i18n-merge-json#readme",
"dependencies": {
"@angular-devkit/architect": "^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1701.0",
"@angular-devkit/core": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"@angular-devkit/schematics": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"@schematics/angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^20.10",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jasmine": "^5.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.10"
}
}