-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "use-local-storage",
"version": "3.0.0",
"description": "A flexible React Hook for using Local Storage.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage --collectCoverageFrom=src/**/*.ts",
"prepublish": "tsc"
},
"keywords": [
"react",
"hooks",
"local storage",
"localstorage",
"react hooks local storage",
"uselocalstorage"
],
"author": "Nick Scialli",
"license": "MIT",
"bugs": {
"url": "https://github.com/nas5w/use-local-storage/issues"
},
"homepage": "https://github.com/nas5w/use-local-storage#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.8.1"
}
}