forked from xnimorz/use-debounce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "use-debounce",
"version": "3.0.0",
"description": "Debounce hook for react",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "./lib",
"sideEffects": false,
"scripts": {
"test": "yarn jest",
"build": "yarn test && eslint \"src/**.ts\" && yarn build:cjs && yarn build:es",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"size": "size-limit"
},
"size-limit": [
{
"path": "lib/index.js"
}
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xnimorz/use-debounce.git"
},
"keywords": [
"debounce",
"react-hook",
"react"
],
"author": "Nikita Mostovoy (nik.mostovoy@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xnimorz/use-debounce/issues"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"homepage": "https://github.com/xnimorz/use-debounce#readme",
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"react": "16.8.3",
"react-dom": "16.8.3",
"size-limit": "^1.2.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}