This repository was archived by the owner on Feb 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "react-hooks-object-state",
"version": "1.1.3",
"description": "React hook for partially updating state objects within functional components",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib/** && eslint test/util/**",
"pretest": "eslint lib/ test/",
"test": "jest --coverage"
},
"jest": {
"rootDir": "test",
"testRegex": "/test/.*\\.test\\.js$",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"keywords": [
"React",
"helper",
"useState",
"object",
"hook",
"functional",
"state"
],
"author": "Adam Davies (https://adam-davies.me)",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/acdvs/react-hooks-object-state.git"
},
"homepage": "https://github.com/acdvs/react-hooks-object-state#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/react-hooks": "^3.7.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react-hooks": "^1.4.0",
"jest": "^24.3.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^17.0.1"
},
"peerDependencies": {
"react": "^16.8.4"
}
}