-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "@rehooks/local-storage",
"version": "2.4.5",
"description": "React hook for 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",
"prepublishOnly": "npm run build",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"example": "npm run build && parcel example/example.html"
},
"repository": {
"type": "git",
"url": "https://github.com/rehooks/local-storage.git"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Amit Solanki <amit.fash@gmail.com>",
"contributors": [
"Joseph Harrison-Lim"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"local-storage",
"sync"
],
"files": [
"/lib",
"/src",
"LICENSE"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^10.2.1",
"@testing-library/react-hooks": "^3.3.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"all-contributors-cli": "^6.11.2",
"babel-jest": "^26.0.1",
"browser-env": "^3.2.6",
"jest": "^26.0.1",
"parcel": "^2.0.0-beta.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
}
}