forked from DevExpress/angular-testcafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
{
"name": "angular-testcafe",
"version": "3.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"
},
"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": "^13.3.7",
"@angular-devkit/core": "^12.2.6",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"testcafe": "^1.19.0",
"testcafe-reporter-html": "^1.4.6",
"ts-node": "^10.2.1",
"typescript": "^4.3"
},
"peerDependencies": {
"@angular/core": ">=13.0.0",
"testcafe": ">=1.9.0"
},
"dependencies": {
"lodash": "4.17.21"
}
}