-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
104 lines (104 loc) · 2.95 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
99
100
101
102
103
104
{
"name": "cypress-angular-unit-test",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.lib.json",
"watch": "tsc --project tsconfig.lib.json -w",
"semantic-release": "semantic-release",
"cy:open": "cypress open-ct",
"cy:run": "cypress run",
"ng": "ng",
"app-start": "ng serve",
"app-build": "ng build",
"docker:run": "docker run -it -v ${PWD}:/e2e -w /e2e -e CYPRESS_updateSnapshots cypress/included:5.1.0",
"prepare": "husky install"
},
"private": false,
"files": [
"dist",
"support.js"
],
"main": "dist/index.js",
"types": "dist",
"homepage": "https://github.com/bahmutov/cypress-angular-unit-test#readme",
"dependencies": {
"@cypress/mount-utils": "1.0.2",
"debug": "4.3.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.18",
"@angular/animations": "12.2.17",
"@angular/cdk": "12.2.13",
"@angular/cli": "12.2.18",
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/compiler-cli": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular/localize": "12.2.17",
"@angular/material": "12.2.13",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@angular/router": "12.2.17",
"@cypress/code-coverage": "3.12.23",
"@cypress/webpack-dev-server": "1.8.4",
"@cypress/webpack-preprocessor": "5.17.1",
"@ngrx/store": "12.5.1",
"@types/cypress-image-snapshot": "3.1.9",
"@types/node": "16.18.82",
"angular-router-loader": "0.8.5",
"angular2-template-loader": "0.6.2",
"codelyzer": "6.0.2",
"core-js": "3.36.0",
"cypress": "9.7.0",
"cypress-angular-unit-test": "file:.",
"cypress-image-snapshot": "4.0.1",
"html-loader": "3.1.2",
"html-webpack-plugin": "5.6.0",
"husky": "7.0.4",
"istanbul-instrumenter-loader": "3.0.1",
"ng-inline-svg": "13.1.1",
"ngx-build-plus": "12.2.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"primeng": "13.4.1",
"raw-loader": "1.0.0",
"rxjs": "7.8.1",
"semantic-release": "19.0.5",
"to-string-loader": "1.2.0",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"tslint": "5.20.1",
"typescript": "4.6.2",
"webpack-dev-server": "3.11.3",
"zone.js": "0.13.1"
},
"peerDependencies": {
"@angular/common": "*",
"@angular/compiler": "*",
"@angular/core": "*",
"@angular/platform-browser": "*",
"@angular/platform-browser-dynamic": "*",
"html-webpack-plugin": ">=4",
"core-js": "*",
"zone.js": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-angular-unit-test.git"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "break",
"release": "major"
}
]
}
}
}