forked from biesbjerg/ngx-translate-po-http-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "@biesbjerg/ng2-translate-po-loader",
"version": "0.2.1",
"description": "Use po files with ng2-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/ng2-translate-po-loader.git"
},
"keywords": [],
"author": "Kim Biesbjerg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biesbjerg/ng2-translate-po-loader/issues"
},
"homepage": "https://github.com/biesbjerg/ng2-translate-po-loader",
"engines": {
"node": ">=4.1.1"
},
"config": {},
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"ng2-translate": "^5.0.0"
},
"dependencies": {
"gettext-parser": "1.2.1"
},
"devDependencies": {
"@angular/core": "2.2.1",
"@angular/common": "2.2.1",
"@angular/platform-browser": "2.2.1",
"@angular/http": "2.2.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.21",
"typescript": "2.0.10",
"ng2-translate": "5.0.0",
"tslint": "4.2.0",
"tslint-eslint-rules": "3.2.1"
}
}