forked from ngx-translate/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 1.61 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
{
"name": "ng2-translate",
"description": "An implementation of angular translate for Angular 2",
"scripts": {
"test": "tsc && karma start",
"test-watch": "tsc && karma start --no-single-run --auto-watch",
"commit": "git-cz",
"prepublish": "tsc",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/ocombe/ng2-translate.git"
},
"keywords": [
"angular",
"angular2",
"translate",
"i18n"
],
"author": "Olivier Combe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocombe/ng2-translate/issues"
},
"main": "ng2-translate.js",
"typings": "./ng2-translate.d.ts",
"homepage": "https://github.com/ocombe/ng2-translate",
"peerDependencies": {
"angular2": "~2.0.0-beta.0",
"es6-promise": "~3.0.2",
"es6-shim": "~0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "~0.5.10"
},
"devDependencies": {
"commitizen": "~2.4.6",
"cz-conventional-changelog": "~1.1.4",
"jasmine-core": "~2.3.4",
"karma": "~0.13.15",
"karma-chrome-launcher": "~0.2.2",
"karma-firefox-launcher": "~0.1.7",
"karma-jasmine": "~0.3.6",
"karma-typescript-preprocessor": "0.0.21",
"semantic-release": "~4.3.5",
"systemjs": "~0.19.6",
"typescript": "~1.7.3",
"angular2": "~2.0.0-beta.0",
"es6-promise": "~3.0.2",
"es6-shim": "~0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "~0.5.10"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}