-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "@testing-library/react-hooks",
"version": "0.0.0-semantically-released",
"description": "Simple and complete React hooks testing utilities that encourage good testing practices.",
"main": "lib/index.js",
"keywords": [
"testing",
"react",
"hooks",
"unit",
"integration"
],
"files": [
"lib",
"src",
"pure.js",
"dont-cleanup-after-each.js"
],
"author": "Michael Peyper <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/testing-library/react-hooks-testing-library.git"
},
"license": "MIT",
"scripts": {
"setup": "npm install && npm run validate -s",
"validate": "kcd-scripts validate",
"prepare": "npm run build",
"build": "kcd-scripts build --out-dir lib",
"lint": "kcd-scripts lint",
"format": "kcd-scripts format",
"coverage": "codecov",
"test": "kcd-scripts test",
"docs:dev": "docz dev",
"docs:build": "docz build",
"contributors:add": "all-contributors add"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@types/testing-library__react-hooks": "^3.4.0"
},
"devDependencies": {
"all-contributors-cli": "6.19.0",
"codecov": "3.8.1",
"docz": "2.3.1",
"docz-theme-default": "1.2.0",
"docz-utils": "2.3.0",
"kcd-scripts": "7.5.3",
"react": "17.0.1",
"react-test-renderer": "17.0.1",
"typescript": "4.1.3",
"eslint": "7.17.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-test-renderer": ">=16.9.0"
}
}