UNPKG

1.94 kBJSONView Raw
1{
2 "name": "@testing-library/jest-dom",
3 "version": "5.11.0",
4 "description": "Custom jest matchers to test the state of the DOM",
5 "main": "dist/index.js",
6 "engines": {
7 "node": ">=8",
8 "npm": ">=6",
9 "yarn": ">=1"
10 },
11 "scripts": {
12 "build": "kcd-scripts build",
13 "format": "kcd-scripts format",
14 "lint": "kcd-scripts lint",
15 "setup": "npm install && npm run validate -s",
16 "test": "kcd-scripts test",
17 "test:update": "npm test -- --updateSnapshot --coverage",
18 "validate": "kcd-scripts validate"
19 },
20 "files": [
21 "dist",
22 "extend-expect.js",
23 "matchers.js"
24 ],
25 "keywords": [
26 "testing",
27 "dom",
28 "jest",
29 "jsdom"
30 ],
31 "author": "Ernesto Garcia <gnapse@gmail.com> (http://gnapse.github.io)",
32 "license": "MIT",
33 "dependencies": {
34 "@babel/runtime": "^7.9.2",
35 "@types/testing-library__jest-dom": "^5.9.1",
36 "aria-query": "^4.2.2",
37 "chalk": "^3.0.0",
38 "css": "^2.2.4",
39 "css.escape": "^1.5.1",
40 "jest-diff": "^25.1.0",
41 "jest-matcher-utils": "^25.1.0",
42 "lodash": "^4.17.15",
43 "redent": "^3.0.0"
44 },
45 "devDependencies": {
46 "jest-environment-jsdom-sixteen": "^1.0.3",
47 "jest-watch-select-projects": "^2.0.0",
48 "jsdom": "^16.2.1",
49 "kcd-scripts": "^5.6.0",
50 "pretty-format": "^25.1.0"
51 },
52 "eslintConfig": {
53 "extends": "./node_modules/kcd-scripts/eslint.js",
54 "rules": {
55 "babel/no-invalid-this": "off"
56 },
57 "overrides": [
58 {
59 "files": [
60 "src/__tests__/*.js"
61 ],
62 "rules": {
63 "max-lines-per-function": "off"
64 }
65 }
66 ]
67 },
68 "eslintIgnore": [
69 "node_modules",
70 "coverage",
71 "dist"
72 ],
73 "repository": {
74 "type": "git",
75 "url": "https://github.com/testing-library/jest-dom"
76 },
77 "bugs": {
78 "url": "https://github.com/testing-library/jest-dom/issues"
79 },
80 "homepage": "https://github.com/testing-library/jest-dom#readme"
81}