This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "ngx-test-helpers",
"version": "3.0.2",
"description": "A collection of helpers for testing Angular applications ",
"scripts": {
"build": "ng-packagr -p ng-package.json",
"lint": "tslint --config tslint.json --project tsconfig.json 'src/**/*.ts'",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luchsamapparat/ngx-test-helpers.git"
},
"keywords": [
"angular",
"jasmine",
"ngrx",
"test"
],
"author": "Marvin Luchs",
"license": "ISC",
"bugs": {
"url": "https://github.com/luchsamapparat/ngx-test-helpers/issues"
},
"homepage": "https://github.com/luchsamapparat/ngx-test-helpers#readme",
"devDependencies": {
"@angular/common": "4.4.6",
"@angular/compiler": "4.4.6",
"@angular/core": "4.4.6",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@ngrx/effects": "^4.0.0",
"@ngrx/store": "^4.0.0",
"@types/jasmine": "^2.6.0",
"@types/lodash-es": "4.17.0",
"@types/node": "8.0.46",
"@types/webpack-env": "1.13.2",
"codelyzer": "^3.2.1",
"core-js": "2.5.1",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "2.0.5",
"lodash-es": "4.17.4",
"ng-packagr": "1.5.0-rc.0",
"rxjs": "^5.4.0",
"source-map-loader": "0.2.2",
"ts-loader": "3.0.5",
"tslint": "5.8.0",
"tslint-sonarts": "^1.0.0",
"typescript": "2.5.3",
"webpack": "3.8.1",
"zone.js": "0.8.18"
},
"peerDependencies": {
"@angular/core": ">= 4.4.0",
"@ngrx/effects": ">= 4.0.0",
"@ngrx/store": ">= 4.0.0",
"lodash-es": ">= 4.17.0",
"rxjs": ">= 5.4.0"
}
}