forked from testing-library/cypress-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 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
{
"name": "@testing-library/cypress",
"version": "0.0.0-semantically-released",
"description": "Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "npm-run-all --parallel test:unit test:cypress",
"test:cypress": "npm run test:cypress:run",
"test:cypress:dev": "npm run test:cypress:open",
"test:cypress:open": "cypress open",
"test:cypress:run": "cypress run",
"test:unit": "kcd-scripts test --no-watch",
"test:unit:watch": "kcd-scripts test",
"typecheck": "kcd-scripts typecheck --build types",
"validate": "kcd-scripts validate build,lint,test,typecheck"
},
"files": [
"dist",
"add-commands.js",
"types/*.d.ts"
],
"keywords": [
"testing",
"cypress",
"ui",
"dom",
"integration",
"functional",
"end-to-end",
"e2e"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@testing-library/dom": "^8.1.0"
},
"devDependencies": {
"cypress": "^10.0.0",
"kcd-scripts": "^11.2.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
},
"peerDependencies": {
"cypress": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"import/prefer-default-export": "off",
"import/no-unassigned-import": "off",
"jest/valid-expect": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/cypress-testing-library"
},
"bugs": {
"url": "https://github.com/kentcdodds/cypress-testing-library/issues"
},
"homepage": "https://github.com/kentcdodds/cypress-testing-library#readme"
}