-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 1.8 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
{
"name": "react-use-localstorage",
"version": "3.5.3",
"description": "Use Local Storage with React hooks",
"author": "Sung Kim <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dance2die/react-use-localstorage.git"
},
"homepage": "https://github.com/dance2die/react-use-localstorage",
"main": "dist/react-use-localstorage.esm.js",
"umd:main": "dist/react-use-localstorage.umd.production.js",
"module": "dist/react-use-localstorage.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"version:alpha": "npm version prerelease --preid=alpha",
"publish:alpha": "npm publish --tag alpha",
"prepublishOnly": "tsdx build"
},
"keywords": [
"localStorage",
"react",
"hooks"
],
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.10.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.8.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"setupFiles": [
"./test/setup.ts"
]
},
"contributors": [
{
"name": "lilasquared",
"email": "[email protected]"
},
{
"name": "TheAifam5",
"email": "[email protected]",
"url": "https://theaifam5.eu/"
},
{
"name": "VitorLuizC",
"email": "[email protected]",
"url": "http://vitorluizc.github.io/"
}
]
}