-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "@testing-library/testcafe",
"version": "1.0.1-semantically-released",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "kcd-scripts lint",
"test:unit": "kcd-scripts test --no-watch --config=jest.config.js",
"test:unit:monorepo": "cd tests/unit && kcd-scripts test --no-watch --config=../../jest.config.js",
"test:testcafe": "testcafe --skip-js-errors",
"format": "prettier . --write",
"format:check": "prettier . --check",
"validate": "kcd-scripts validate format:check,lint,test:unit:monorepo",
"test": "npm-run-all --parallel test:unit test:unit:monorepo test:testcafe"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@testing-library/dom": "^8.19.0"
},
"peerDependencies": {
"testcafe": ">=2.0.0"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-testcafe": "^0.2.1",
"kcd-scripts": "^12.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^20.0.2",
"testcafe": ">=2.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/testcafe-testing-library.git"
},
"engines": {
"node": ">=14",
"npm": ">=6"
}
}