forked from larscom/ngx-translate-module-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "@larscom/ngx-translate-module-loader",
"version": "1.3.2",
"description": "Highly configurable and flexible translations loader. Fetch multiple translations, each translation file gets it's own namespace by default",
"main": "./dist/public_api.js",
"typings": "./dist/public_api.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "tslint -p tslint.json -t stylish",
"test": "jest",
"test:update": "jest -u",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test && npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/larscom/ngx-translate-module-loader"
},
"keywords": [
"angular",
"ngx-translate",
"translate",
"rxjs",
"module",
"http",
"i18n"
],
"author": "Lars Kniep",
"license": "MIT",
"bugs": {
"url": "https://github.com/larscom/ngx-translate-module-loader/issues"
},
"homepage": "https://github.com/larscom/ngx-translate-module-loader#readme",
"devDependencies": {
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@ngx-translate/core": "^11.0.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"core-js": "^2.6.5",
"husky": "^1.3.1",
"jest": "^24.5.0",
"rimraf": "^2.6.3",
"rxjs": "^6.4.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0",
"@ngx-translate/core": "^10.0.0 || ^11.0.0",
"rxjs": ">=6.0.0"
},
"dependencies": {
"deepmerge": "^3.2.0"
}
}