forked from dance2die/react-use-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.56 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
{
"name": "react-use-sessionstorage",
"version": "1.0.2",
"description": "Use Session Storage with React hooks",
"author": "Erik Jan de Wit <erikjan.dewit@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edewit/react-use-sessionstorage.git"
},
"homepage": "https://github.com/edewit/react-use-sessionstorage",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "run-s build:*",
"build:src": "tsc",
"build:uglify": "uglifyjs -c -o lib/index.js lib/index.js",
"prepare": "run-s clean build"
},
"keywords": [
"sessionStorage",
"react",
"hooks"
],
"devDependencies": {
"@types/react": "^16.8.2",
"typescript": "^3.3.3",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"uglify-js": "^3.4.9",
"rimraf": "^2.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"prettier-tslint": "^0.4.2",
"tslint-config-prettier": "^1.18.0",
"lint-staged": "^8.1.3",
"husky": "^1.3.1",
"react": "^16.8.1"
},
"peerDependencies": {
"react": "^16.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier-tslint fix",
"git add"
]
},
"contributors": [
{
"name": "lilasquared",
"email": "aaronmroberts1@gmail.com"
},
{
"name": "TheAifam5",
"email": "theaifam5@gmail.com",
"url": "https://theaifam5.eu/"
}
]
}