forked from mwootendev/ngx-translate-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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
{
"name": "ngx-translate-testing",
"description": "A library of utilities for testing with the ngx-translate i18n Angular library",
"version": "0.0.0-development",
"homepage": "https://github.com/safe-fleet/ngx-translate-plugins#readme",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "yarn run build:lib && yarn run build:app",
"build:app": "ng build",
"build:lib": "ng build testing",
"build:lib:prod": "yarn run build:lib --configuration production",
"clean": "rimraf dist coverage",
"coverage:app": "yarn run test:app --code-coverage true",
"coverage:lib": "yarn run test:lib --code-coverage true",
"pretest": "yarn run build:lib",
"test": "jest --c=jest.config.js",
"lint": "yarn run lint:lib && yarn run lint:app",
"lint:app": "ng lint --project=ngx-translate-plugins",
"lint:lib": "ng lint --project=testing",
"e2e": "ng e2e",
"precommit": "yarn run lint",
"pack:lib": "cd dist/testing && yarn pack",
"package:lib": "yarn run build:lib:prod && yarn run pack:lib"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/safe-fleet/ngx-translate-plugins.git"
},
"bugs": {
"url": "https://safefleet.atlassian.net/browse"
},
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@messageformat/core": "3.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"core-js": "^3.0.0",
"messageformat": "^2.0.2",
"ngx-translate-messageformat-compiler": "^6.4.0",
"rxjs": "^7.4.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.14",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@angular/localize": "^16.2.12",
"@types/jasmine": "^3.10.2",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^29.5.11",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"husky": "^7.0.4",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^7.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^13.1.4",
"lint-staged": "^12.0.2",
"ng-packagr": "^16.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tsickle": "^0.43.0",
"tslib": "^2.0.0",
"typescript": "^4.9.5",
"yarn": "^1.17.3"
}
}