|
4 | 4 | "description": "Simple and complete custom Cypress commands and utilities that encourage good testing practices.", |
5 | 5 | "main": "dist/index.js", |
6 | 6 | "engines": { |
7 | | - "node": ">=10" |
| 7 | + "node": ">=10", |
| 8 | + "npm": ">=6" |
8 | 9 | }, |
9 | 10 | "scripts": { |
10 | 11 | "build": "kcd-scripts build", |
11 | 12 | "lint": "kcd-scripts lint", |
12 | 13 | "setup": "npm install && npm run validate -s", |
13 | 14 | "test": "npm-run-all --parallel test:unit test:cypress", |
14 | 15 | "test:cypress": "npm run test:cypress:run", |
| 16 | + "test:cypress:dev": "npm run test:cypress:open", |
15 | 17 | "test:cypress:open": "cypress open", |
16 | 18 | "test:cypress:run": "cypress run", |
17 | 19 | "test:unit": "kcd-scripts test --no-watch", |
18 | 20 | "test:unit:watch": "kcd-scripts test", |
19 | | - "test:cypress:dev": "npm run test:cypress:open", |
20 | 21 | "validate": "kcd-scripts validate build,lint,test" |
21 | 22 | }, |
22 | | - "husky": { |
23 | | - "hooks": { |
24 | | - "pre-commit": "kcd-scripts pre-commit" |
25 | | - } |
26 | | - }, |
27 | 23 | "files": [ |
28 | 24 | "dist", |
29 | 25 | "add-commands.js" |
|
41 | 37 | "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)", |
42 | 38 | "license": "MIT", |
43 | 39 | "dependencies": { |
44 | | - "@babel/runtime": "^7.8.7", |
45 | | - "@testing-library/dom": "^7.0.2", |
| 40 | + "@babel/runtime": "^7.9.2", |
| 41 | + "@testing-library/dom": "^7.1.0", |
46 | 42 | "@types/testing-library__cypress": "^5.0.3" |
47 | 43 | }, |
48 | 44 | "devDependencies": { |
49 | | - "cypress": "^4.0.0", |
50 | | - "kcd-scripts": "^5.4.0", |
| 45 | + "cypress": "^4.2.0", |
| 46 | + "kcd-scripts": "^5.5.0", |
51 | 47 | "npm-run-all": "^4.1.5" |
52 | 48 | }, |
53 | 49 | "peerDependencies": { |
|
0 commit comments