forked from help-me-mom/ng-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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": "ng-mocks",
"version": "5.3.0",
"description": "Functions for creating angular mocks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"CHANGELOG",
"dist",
"LICENSE",
"README"
],
"scripts": {
"clean": "rm -rf dist coverage",
"lint": "tslint --project tsconfig.json",
"build": "npm run clean && tsc",
"release": "npm run lint && npm run test && npm run build && standard-version",
"test": "karma start",
"test:watch": "karma start --auto-watch --single-run=false",
"test:debug": "npm run test:watch -- --browsers=Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ike18t/ng-mocks.git"
},
"keywords": [
"Angular",
"Component",
"Directive",
"Mock",
"Pipe",
"TestBed",
"Testing"
],
"author": "Isaac Datlof <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ike18t/ng-mocks/issues"
},
"homepage": "https://github.com/ike18t/ng-mocks#readme",
"peerDependencies": {
"@angular/core": "5.x",
"@angular/forms": "5.x"
},
"devDependencies": {
"@angular/common": "5.x",
"@angular/compiler": "5.x",
"@angular/core": "5.x",
"@angular/forms": "5.x",
"@angular/platform-browser": "5.x",
"@angular/platform-browser-dynamic": "5.x",
"@types/core-js": "^0.9.43",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.17",
"core-js": "^2.5.1",
"jasmine-ts": "^0.2.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.9",
"rxjs": "5.5.5",
"standard-version": "^4.2.0",
"tslint": "^5.5.0",
"typescript": "2.6.x",
"zone.js": "^0.8.14"
}
}