-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "squirrel-gill",
"version": "1.0.5",
"description": "React hooks for sessionStorage and localStorage",
"keywords": [
"react",
"react-hooks",
"persistent",
"localstorage",
"sessionstorage"
],
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"watch": "babel src -w -d lib",
"lint": "prettier --check *.md *.json src/*.js",
"example": "npm run build && parcel example/index.html"
},
"files": [
"lib"
],
"author": "Holybasil",
"license": "MIT",
"repository": "https://github.com/Holybasil/squirrel-gill",
"peerDependencies": {
"react": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,json}": "prettier --write",
"*.js": [
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"husky": "^4.2.5",
"lint-staged": "^10.1.5",
"parcel": "^2.0.0-beta.2",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}