-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "use-enhanced-reducer",
"version": "1.0.7",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && rollup --config ./rollup.config.js && npm run check-size",
"check-size": "size-limit",
"preversion": "npm run build"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "0.5kb"
}
],
"homepage": "https://github.com/pret-a-porter/use-enhanced-reducer",
"author": {
"name": "Maksim Sharipov",
"url": "https://github.com/pret-a-porter"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.4.2",
"@types/react": "^16.8.5",
"react": "^16.8.3",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.27.0",
"size-limit": "^4.4.2",
"typescript": "^3.3.3333"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0"
},
"keywords": [
"dispatch",
"hooks",
"logger",
"middleware",
"react",
"thunk",
"tiny",
"use-reducer"
]
}