-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "ng-extract-i18n-merge",
"version": "2.12.0",
"description": "Extract and merge i18n xliff translation files for angular projects.",
"main": "index.js",
"builders": "builders.json",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"ng-update": {
"migrations": "./schematics/migrations/migrations.json"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/daniel-sc/ng-extract-i18n-merge.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"angular",
"i18n",
"xliff"
],
"author": "daniel-schreiber@gmx.de",
"license": "MIT",
"bugs": {
"url": "https://github.com/daniel-sc/ng-extract-i18n-merge/issues"
},
"homepage": "https://github.com/daniel-sc/ng-extract-i18n-merge#readme",
"dependencies": {
"@angular-devkit/architect": "^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1700.0 || ^0.1800.0",
"@angular-devkit/core": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"@angular-devkit/schematics": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"@schematics/angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"xmldoc": "^1.1.3"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.8 || ^29.0.0",
"@types/xmldoc": "^1.1.6",
"jest": "^28.0.8 || ^29.0.0",
"ts-jest": "^28.0.8 || ^29.0.0",
"ts-node": ">=10.9.1",
"typescript": ">=4.5.0"
},
"engines": {
"node": ">=14.0.0"
}
}