-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@biesbjerg/ngx-translate-po-http-loader",
"version": "3.1.0",
"description": "Load po files for use with ngx-translate",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"watch": "npm run clean && tsc --watch",
"clean": "rm -rf ./dist",
"lint": "tslint --force '*.ts'"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/biesbjerg/ngx-translate-po-http-loader.git"
},
"keywords": [],
"author": "Kim Biesbjerg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biesbjerg/ngx-translate-po-http-loader/issues"
},
"homepage": "https://github.com/biesbjerg/ngx-translate-po-http-loader",
"engines": {
"node": ">=4.1.1"
},
"config": {},
"peerDependencies": {
"@angular/core": "^6.0.0",
"@angular/common": "^6.0.0",
"@ngx-translate/core": "^10.0.0"
},
"dependencies": {
"gettext-parser": "1.3.1"
},
"devDependencies": {
"@angular/core": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"rxjs": "^6.0.0",
"zone.js": "0.8.26",
"typescript": "2.7.2",
"@ngx-translate/core": "10.0.0",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1"
}
}