-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
71
72
73
74
75
76
77
78
{
"name": "use-cached",
"version": "2.0.0",
"author": "woozyking <runzhou.li@gmail.com>",
"license": "MIT",
"description": "React cached hooks.",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/woozyking/use-cached.git"
},
"private": false,
"main": "dist/index.js",
"source": "src/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint src __tests__ stories",
"test": "jest",
"build": "babel src --out-dir dist --copy-files",
"prepublishOnly": "yarn install && yarn lint && yarn test && yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"dependencies": {
"lscache": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@size-limit/preset-small-lib": "^4.5.7",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"@testing-library/react-hooks": "^3.2.1",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"size-limit": "^4.5.7"
},
"peerDependencies": {
"react": "^16.8"
},
"bugs": {
"url": "/~https://github.com/woozyking/use-cached/issues"
},
"homepage": "/~https://github.com/woozyking/use-cached#readme",
"keywords": [
"react",
"hook",
"cache",
"localstorage"
],
"size-limit": [
{
"path": "dist/index.js",
"limit": "2.5 KB"
}
]
}