-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 842 Bytes
/
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
{
"name": "use-debounced-effect",
"version": "2.0.1",
"description": "Debounced effect hook for react",
"main": "lib/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "babel ./src --out-dir ./lib"
},
"repository": {
"type": "git",
"url": "[email protected]:samanmohamadi/use-debounced-effect.git"
},
"keywords": [
"debounce",
"use-effect",
"react-hook",
"react"
],
"author": "Saman Mohamadi ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/samanmohamadi/use-debounced-effect/issues"
},
"peerDependencies": {},
"homepage": "https://github.com/samanmohamadi/use-debounced-effect#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}