This repository has been archived by the owner on Nov 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.81 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
91
92
93
94
95
96
97
98
{
"name": "ngx-i18n-router",
"version": "5.0.0",
"description": "Route internationalization utility for Angular",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/ngx-i18n-router.git"
},
"keywords": [],
"author": {
"name": "Burak Tasci",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fulls1z3/ngx-i18n-router/issues"
},
"homepage": "https://github.com/fulls1z3/ngx-i18n-router#readme",
"scripts": {
"clean": "rimraf .temp dist",
"build": "ts-node ./tools/build/rollup.ts && rimraf .temp",
"lint": "tslint -p ./tsconfig.json --force",
"rebuild": "npm run clean && npm run build",
"ci:before": "greenkeeper-lockfile-update",
"ci:after": "greenkeeper-lockfile-upload",
"test": "jest --runInBand --colors",
"test:ci": "jest --ci --updateSnapshot --colors",
"release": "standard-version"
},
"devDependencies": {
"@angular/common": "5.2.1",
"@angular/compiler": "5.2.1",
"@angular/compiler-cli": "5.2.1",
"@angular/core": "5.2.1",
"@angular/platform-browser": "5.2.1",
"@angular/platform-browser-dynamic": "5.2.1",
"@angular/router": "5.2.1",
"core-js": "~2.5.3",
"rxjs": "~5.5.6",
"zone.js": "~0.8.20",
"request": "~2.83.0",
"lodash": "~4.17.4",
"@ngx-config/core": "5.0.0",
"@ngx-config/http-loader": "5.0.0",
"@types/node": "~9.4.0",
"@types/jest": "~22.1.0",
"@types/lodash": "4.14.55",
"rimraf": "~2.6.2",
"ts-node": "~4.1.0",
"glob": "~7.1.2",
"camelcase": "~4.1.0",
"rollup": "~0.42.0",
"rollup-plugin-node-resolve": "~3.0.2",
"rollup-plugin-commonjs": "~8.3.0",
"rollup-plugin-sourcemaps": "~0.4.2",
"rollup-plugin-uglify": "~3.0.0",
"reflect-metadata": "~0.1.12",
"tsickle": "~0.26.0",
"jest": "~22.1.1",
"jest-preset-angular": "~5.0.0",
"jest-junit-reporter": "~1.1.0",
"standard-version": "~4.3.0",
"codelyzer": "~4.1.0",
"tslint": "~5.9.1",
"angular-tslint-rules": "1.3.0",
"typescript": "~2.6.2"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "./tools/test/jest.setup.ts",
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
},
"__TRANSFORM_HTML__": true
},
"moduleDirectories": [
"node_modules",
"packages"
],
"moduleNameMapper": null,
"cache": false,
"silent": true,
"collectCoverage": true,
"collectCoverageFrom": [
"packages/@ngx-i18n-router/core/src/**/**.ts",
"packages/@ngx-i18n-router/http-loader/src/**/**.ts",
"packages/@ngx-i18n-router/config-loader/src/**/**.ts"
]
},
"greenkeeper": {
"ignore": [
"@types/lodash",
"rollup"
]
}
}