-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
86 lines (86 loc) · 2.11 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
{
"name": "angular-testcafe",
"version": "4.0.0",
"description": "Angular builder for Testcafe",
"main": "src/testcafe/testcafe.builder.js",
"scripts": {
"build": "tsc",
"lint": "eslint demo-app src",
"e2e": "cd demo-app && npm run e2e",
"prepare": "npm run build",
"test": "npm run lint && npm run e2e",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevExpress/angular-testcafe.git"
},
"typings": "typings",
"keywords": [
"angular",
"testcafe",
"builder",
"testing",
"runner",
"e2e"
],
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
},
"contributors": [
{
"name": "Tim Nederhoff (original author)",
"url": "https://github.com/timnederhoff"
},
{
"name": "Peter de Beijer",
"url": "https://github.com/peterdebeijer"
},
{
"name": "Richard Kettelerij",
"url": "https://github.com/rkettelerij"
},
{
"name": "Bjorn Schijff",
"url": "https://github.com/bjeaurn"
},
{
"name": "Brian Courtois",
"url": "https://github.com/Brian-Courtois"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/devexpress/angular-testcafe/issues"
},
"builders": "builders.json",
"homepage": "https://github.com/devexpress/angular-testcafe#readme",
"devDependencies": {
"@angular-devkit/architect": "^0.1202.6",
"@angular-devkit/build-angular": "^17.1.1",
"@angular-devkit/core": "^12.2.6",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"publish-please": "^5.5.2",
"testcafe": "^3.3.0",
"testcafe-reporter-html": "^1.4.6",
"ts-node": "^10.2.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@angular/core": ">=13.0.0",
"testcafe": ">=1.9.0"
},
"dependencies": {
"lodash": "4.17.21"
},
"overrides": {
"lodash": "4.17.21",
"semver": "7.5.3",
"axios": "1.6.2"
}
}