-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "@olerichter00/use-localstorage",
"version": "0.1.1",
"description": "React hook to use the local storage.",
"author": "Ole Richter <ole.richter91@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/olerichter00/use-localstorage"
},
"homepage": "https://github.com/olerichter00/use-localstorage",
"main": "dist/index.js",
"umd:main": "dist/use-localstorage.umd.production.js",
"module": "dist/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",
"local",
"storage",
"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",
"prettier": "^2.0.5",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.10.2",
"tsdx": "^0.13.2",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.8.1"
},
"jest": {
"setupFiles": [
"./test/setup.ts"
]
}
}