-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-wiring-library",
"version": "0.0.0-semantically-released",
"description": "A library for making react-testing-library-wiring",
"main": "dist/index.js",
"lockfileVersion": 1,
"module": "dist/index.esm.js",
"repository": "https://github.com/cbranch101/react-wiring-library",
"author": "Clay Branch",
"license": "MIT",
"private": false,
"scripts": {
"build": "node ./scripts/build.js",
"test-base": "jest",
"test": "npm run test-base --watch",
"lint": "node ./node_modules/eslint/bin/eslint.js src/**",
"validate": "npm run lint && npm run test-base --ci"
},
"devDependencies": {
"@testing-library/react": "^12.1.2",
"esbuild": "^0.14.27",
"eslint": "^8.12.0",
"eslint-config-kentcdodds": "^20.1.0",
"prettier": "^2.6.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"vitest": "^0.7.11"
},
"peerDependencies": {
"@testing-library/react": "^12.1.2"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"*.d.ts"
],
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest",
"kentcdodds/react",
"kentcdodds/jsx-a11y"
],
"plugins": [
"react"
],
"rules": {
"react/prop-types": "off",
"no-useless-rename": "off",
"max-lines-per-function": "off",
"import/no-unassigned-import": "off",
"import/named": "off",
"no-shadow": "off",
"jsx-a11y/click-events-have-key-events": "off",
"testing-library/prefer-screen-queries": "off",
"testing-library/render-result-naming-convention": "off",
"testing-library/prefer-wait-for": "off"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"dependencies": {
"@babel/runtime": "7.6.0",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.4.1",
"jest": "^27.5.1"
}
}