-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 915 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 915 Bytes
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
{
"name": "@danedavid/usesetstate",
"version": "1.0.2",
"description": "Dead simple React Hook that can replace this.setState",
"main": "index.js",
"scripts": {
"test": "jest"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^26.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.2.2",
"react": "^16.8.0",
"react-dom": "^16.13.1"
},
"keywords": [
"react",
"react-hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/danedavid/useSetState"
},
"homepage": "https://github.com/danedavid/useSetState",
"author": "Dane David <dndavid102@gmail.com> (https://github.com/danedavid)",
"license": "MIT",
"jest": {
"testMatch": [
"**.test.js"
]
}
}