This repository has been archived by the owner on May 15, 2024. It is now read-only.
forked from Greentube/localize-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "localize-router",
"version": "0.7.0-custom",
"description": "An implementation of routes localization for Angular 2",
"scripts": {
"test": "karma start",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"commit": "npm run prepublish && npm test",
"prepublish": "ngc && npm run build",
"build": "webpack && node copy.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Greentube/localize-router.git"
},
"keywords": [
"angular",
"angular2",
"translate",
"localize",
"routes",
"i18n"
],
"author": "Miroslav Jonas",
"license": "MIT",
"bugs": {
"url": "https://github.com/Greentube/localize-router/issues"
},
"main": "bundles/localize-router.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/Greentube/localize-router",
"peerDependencies": {
"@angular/core": ">=2.0.0",
"@angular/common": ">=2.0.0",
"@angular/http": ">=2.0.0",
"@angular/router": ">=3.0.0",
"rxjs": "^5.0.0",
"@ngx-translate/core": "^6.0.0"
},
"devDependencies": {
"@angular/common": "2.4.8",
"@angular/compiler": "2.4.8",
"@angular/compiler-cli": "2.4.8",
"@angular/core": "2.4.8",
"@angular/http": "2.4.8",
"@angular/platform-browser": "2.4.8",
"@angular/platform-browser-dynamic": "2.4.8",
"@angular/platform-server": "2.4.8",
"@angular/router": "3.4.8",
"@types/es6-promise": "0.0.32",
"@types/hammerjs": "2.0.33",
"@types/jasmine": "2.5.41",
"@types/node": "7.0.4",
"awesome-typescript-loader": "3.0.0-beta.18",
"codelyzer": "2.0.0-beta.4",
"commitizen": "2.9.2",
"concurrently": "3.1.0",
"core-js": "2.4.1",
"cz-conventional-changelog": "1.2.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"loader-utils": "0.2.16",
"@ngx-translate/core": "6.0.0",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.1",
"semantic-release": "4.3.5",
"source-map-loader": "0.1.5",
"ts-helpers": "1.1.2",
"tslint": "4.0.2",
"tslint-loader": "3.3.0",
"typescript": "2.0.10",
"webpack": "2.2.1",
"webpack-node-externals": "^1.5.4",
"zone.js": "0.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}