|
3 | 3 | "version": "0.0.0-semantically-released",
|
4 | 4 | "description": "Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
|
5 | 5 | "main": "dist/index.js",
|
6 |
| - "typings": "typings", |
7 | 6 | "engines": {
|
8 | 7 | "node": ">=8"
|
9 | 8 | },
|
10 | 9 | "scripts": {
|
11 | 10 | "build": "kcd-scripts build",
|
12 | 11 | "lint": "kcd-scripts lint",
|
13 |
| - "test": "npm-run-all --parallel test:unit test:cypress test:typings", |
| 12 | + "test": "npm-run-all --parallel test:unit test:cypress", |
14 | 13 | "test:unit": "kcd-scripts test --no-watch",
|
15 | 14 | "test:unit:watch": "kcd-scripts test",
|
16 | 15 | "test:cypress:serve": "serve --listen 13370 ./cypress/fixtures/test-app",
|
17 | 16 | "test:cypress:run": "wait-port --timeout 10000 localhost:13370 && cypress run",
|
18 | 17 | "test:cypress:open": "cypress open",
|
19 | 18 | "test:cypress": "npm-run-all --silent --parallel --race test:cypress:serve test:cypress:run",
|
20 | 19 | "test:cypress:dev": "npm-run-all --silent --parallel --race test:cypress:serve test:cypress:open",
|
21 |
| - "test:typings": "tsc -p tests/typescript-types/ --noemit", |
22 |
| - "test:typings:watch": "tsc -p tests/typescript-types/ --noemit --watch", |
23 | 20 | "validate": "kcd-scripts validate build,lint,test",
|
24 |
| - "setup": "npm install && npm run validate -s", |
25 |
| - "dtslint": "dtslint typings" |
| 21 | + "setup": "npm install && npm run validate -s" |
26 | 22 | },
|
27 | 23 | "husky": {
|
28 | 24 | "hooks": {
|
|
31 | 27 | },
|
32 | 28 | "files": [
|
33 | 29 | "dist",
|
34 |
| - "add-commands.js", |
35 |
| - "typings" |
| 30 | + "add-commands.js" |
36 | 31 | ],
|
37 | 32 | "keywords": [
|
38 | 33 | "testing",
|
|
48 | 43 | "license": "MIT",
|
49 | 44 | "dependencies": {
|
50 | 45 | "@babel/runtime": "^7.5.5",
|
51 |
| - "@testing-library/dom": "^6.0.0" |
| 46 | + "@testing-library/dom": "^6.0.0", |
| 47 | + "@types/testing-library__cypress": "^4.1.0" |
52 | 48 | },
|
53 | 49 | "devDependencies": {
|
54 |
| - "@types/jquery": "*", |
55 | 50 | "cypress": "3.4.1",
|
56 |
| - "dtslint": "^0.9.1", |
57 | 51 | "kcd-scripts": "^1.5.2",
|
58 | 52 | "npm-run-all": "^4.1.2",
|
59 | 53 | "serve": "^11.1.0",
|
60 |
| - "typescript": "^3.5.3", |
61 | 54 | "wait-port": "^0.2.2"
|
62 | 55 | },
|
63 | 56 | "peerDependencies": {
|
|
0 commit comments