-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
85 lines (85 loc) · 2.44 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
{
"name": "localize-router",
"version": "2.0.0-RC.3",
"description": "An implementation of routes localization for Angular",
"scripts": {
"test": "karma start",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"commit": "npm run prepublish && npm test",
"prepublish": "ngc && npm run build",
"prepare": "ngc && npm run build",
"build": "webpack"
},
"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/common": ">=6.0.0",
"@angular/core": ">=6.0.0",
"@angular/router": ">=6.0.0",
"@ngx-translate/core": ">=10.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/animations": "~6.0.6",
"@angular/common": "~6.0.6",
"@angular/compiler": "~6.0.6",
"@angular/compiler-cli": "~6.0.6",
"@angular/core": "~6.0.6",
"@angular/http": "~6.0.6",
"@angular/platform-browser": "~6.0.6",
"@angular/platform-browser-dynamic": "~6.0.6",
"@angular/platform-server": "~6.0.6",
"@angular/router": "~6.0.6",
"@ngx-translate/core": "10.0.2",
"@types/es6-promise": "0.0.32",
"@types/hammerjs": "2.0.34",
"@types/jasmine": "2.5.47",
"@types/node": "7.0.22",
"awesome-typescript-loader": "3.1.3",
"codelyzer": "~4.5.0",
"concurrently": "3.1.0",
"core-js": "2.4.1",
"istanbul-instrumenter-loader": "~2.0.0",
"jasmine-core": "2.6.2",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-remap-coverage": "0.1.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"loader-utils": "1.1.0",
"reflect-metadata": "0.1.10",
"rxjs": "6.2.1",
"source-map-loader": "0.2.1",
"ts-helpers": "1.1.2",
"tslint": "5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-loader": "3.5.3",
"typescript": "2.7.2",
"webpack": "2.6.0",
"webpack-node-externals": "^1.5.4",
"yarn": "^1.12.1",
"zone.js": "~0.8.26"
}
}