-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.89 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.89 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
{
"name": "ngx-easy-i18n-js",
"description": "The easy internationalization (i18n) library for Angular",
"private": true,
"scripts": {
"clean": "rm -Rf dist/ || true",
"build-core": "ng build @ngx-easy-i18n-js/core",
"prepublish-core": "npm run build-core",
"publish-core": "cd dist/core && npm publish",
"build-http-loader": "ng build @ngx-easy-i18n-js/http-loader",
"prepublish-http-loader": "npm run build-http-loader",
"publish-http-loader": "cd dist/http-loader && npm publish",
"build-bootstrap": "ng build @ngx-easy-i18n-js/bootstrap",
"prepublish-bootstrap": "npm run build-bootstrap",
"publish-bootstrap": "cd dist/bootstrap && npm publish",
"build": "npm run clean && npm run build-core && npm run build-http-loader && npm run build-bootstrap",
"publish-all": "npm run clean && npm run publish-core && npm run publish-http-loader && npm run publish-bootstrap",
"start": "ng serve example"
},
"dependencies": {
"@angular/animations": "^21.0.6",
"@angular/cdk": "^21.0.5",
"@angular/common": "^21.0.6",
"@angular/compiler": "^21.0.6",
"@angular/core": "^21.0.6",
"@angular/forms": "^21.0.6",
"@angular/platform-browser": "^21.0.6",
"@angular/platform-browser-dynamic": "^21.0.6",
"@angular/router": "^21.0.6",
"easy-i18n-js": "^1.1.4",
"lodash": "^4.17.21",
"rxjs": "^7.8.0",
"tslib": "^2.5.3",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/cli": "~21.0.4",
"@angular/compiler-cli": "^21.0.6",
"@types/jasmine": "^4.3.2",
"@types/lodash": "^4.17.4",
"concurrently": "^7.6.0",
"jasmine-core": "~4.3.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",
"ng-packagr": "^21.0.1",
"typescript": "^5.8.3"
}
}