UNPKG

2.45 kBJSONView Raw
1{
2 "name": "@testing-library/user-event",
3 "version": "14.4.3",
4 "description": "Fire events the same way the user does",
5 "keywords": [
6 "react-testing-library",
7 "dom-testing-library",
8 "react",
9 "testing"
10 ],
11 "author": "Giorgio Polvara <polvara@gmail.com>",
12 "license": "MIT",
13 "engines": {
14 "node": ">=12",
15 "npm": ">=6"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/testing-library/user-event"
20 },
21 "bugs": {
22 "url": "https://github.com/testing-library/user-event/issues"
23 },
24 "homepage": "https://github.com/testing-library/user-event#readme",
25 "files": [
26 "dist"
27 ],
28 "scripts": {
29 "build": "scripts ts-build2 --cjs --target es2019",
30 "lint": "kcd-scripts lint",
31 "setup": "npm install && npm run validate -s",
32 "test": "kcd-scripts test",
33 "test:debug": "kcd-scripts --inspect-brk test --runInBand",
34 "test:update": "npm test -- --updateSnapshot --coverage",
35 "validate": "kcd-scripts typecheck"
36 },
37 "devDependencies": {
38 "@ph.fritsche/scripts-config": "^2.4.0",
39 "@testing-library/dom": "^8.11.4",
40 "@testing-library/jest-dom": "^5.16.3",
41 "@testing-library/react": "^13.0.0",
42 "@types/jest-in-case": "^1.0.3",
43 "@types/react": "^17.0.42",
44 "eslint-import-resolver-typescript": "^2.7.0",
45 "eslint-plugin-local-rules": "^1.1.0",
46 "is-ci": "^3.0.1",
47 "jest-in-case": "^1.0.2",
48 "jest-serializer-ansi": "^1.0.3",
49 "kcd-scripts": "^12.1.0",
50 "react": "^18.0.0",
51 "react-dom": "^18.0.0",
52 "react17": "npm:react@^17.0.2",
53 "reactDom17": "npm:react-dom@^17.0.2",
54 "reactIs17": "npm:react-is@^17.0.2",
55 "reactTesting17": "npm:@testing-library/react@^12.1.3",
56 "shared-scripts": "^1.5.1",
57 "typescript": "^4.1.2"
58 },
59 "peerDependencies": {
60 "@testing-library/dom": ">=7.21.4"
61 },
62 "main": "./dist/cjs/index.js",
63 "module": "./dist/esm/index.js",
64 "types": "./dist/types/index.d.ts",
65 "exports": {
66 ".": {
67 "types": "./dist/types/index.d.ts",
68 "require": "./dist/cjs/index.js",
69 "default": "./dist/esm/index.js"
70 },
71 "./dist/cjs/*": "./dist/cjs/*",
72 "./dist/esm/*": "./dist/esm/*"
73 },
74 "typesVersions": {
75 "*": {
76 "dist/types/*": [
77 "./dist/types/*"
78 ],
79 "dist/cjs/*.js": [
80 "./dist/types/*.d.ts"
81 ],
82 "dist/esm/*.js": [
83 "./dist/types/*.d.ts"
84 ],
85 "*": [
86 "./dist/types/*.d.ts"
87 ]
88 }
89 }
90}