forked from rehooks/local-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
54
55
56
57
{
"name": "@maintained/local-storage",
"version": "1.6.0",
"description": "React hook for local-storage. Fork of @rehooks/local-storage",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"docs": "typedoc --out docs src && touch docs/.nojekyll",
"test": "jest --verbose",
"example": "npm run build && parcel example/example.html"
},
"repository": {
"type": "git",
"url": "https://github.com/rehooks/local-storage.git"
},
"author": "Amit Solanki <amit.fash@gmail.com>",
"contributors": [
"Joseph Harrison-Lim"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"local-storage",
"sync"
],
"files": [
"/lib",
"LICENSE"
],
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^8.0.1",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"babel-jest": "^24.8.0",
"browser-env": "^3.2.6",
"jest": "^24.8.0",
"parcel": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.5.1",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
}
}