-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "react-custom-debounced-input",
"version": "2.0.0",
"description": "React wrapper component for custom inputs components with debounced onChange event",
"main": "./lib/index.js",
"author": "Johan Preynat <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"prepublish": "rm -rf ./lib && npm run test && tsc --build tsconfig.json",
"lint": "tslint ./src/**",
"check:types": "tsc",
"test": "npm run lint && npm run check:types"
},
"devDependencies": {
"@types/react": "^16.8.19",
"tslint": "^5.17.0",
"tslint-config-gitbook": "^1.0.1",
"typescript": "^3.5.1"
},
"peerDependencies": {
"react": "^16.8.0"
},
"keywords": [
"react",
"custom",
"input",
"debounce",
"wrapper"
],
"homepage": "https://github.com/jpreynat/react-custom-debounced-input",
"repository": {
"type": "git",
"url": "git+https://github.com/jpreynat/react-custom-debounced-input.git"
},
"bugs": {
"url": "https://github.com/jpreynat/react-custom-debounced-input/issues"
},
"sideEffects": false
}