-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "@atomic-testing/cypress",
"version": "0.5.0",
"description": "Atomic Testing Cypress Adapter",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test:e2e": "cypress run --browser chrome",
"test:e2e:ui": "cypress open"
},
"author": "Tianzhen Lin <tangent@usa.net>",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tangentlin/atomic-testing-cypress.git"
},
"dependencies": {
"@atomic-testing/core": "^0.3.0",
"@atomic-testing/dom-core": "^0.5.0"
},
"devDependencies": {
"cypress": "^12.7.0",
"@testing-library/dom": "^9.0.0",
"@testing-library/user-event": "^14.0.0",
"@atomic-testing/component-driver-html": "^0.3.0",
"@atomic-testing/component-driver-mui-v5": "^0.3.0",
"@types/chai": "^4.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"jest": "^29.2.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^4.9.0"
},
"peerDependencies": {
"@testing-library/dom": ">=9.0.0",
"@testing-library/user-event": ">=14.0.0",
"cypress": ">=7.0.0"
}
}