-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "react-input-debouncer",
"version": "1.0.2",
"description": "Higher order component for debouncing input change events",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src test",
"clean": "rimraf dist",
"build": "babel src --out-dir dist",
"prepublish": "npm run lint && npm run clean && npm run build"
},
"keywords": [
"react",
"debounce",
"input"
],
"author": {
"name": "Trey Hoover",
"email": "treyhoover@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"react": "^0.14 || ^15"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"eslint": "^3.8.1",
"eslint-plugin-babel": "^3.3.0",
"rimraf": "^2.5.4"
},
"files": [
"README.md",
"dist/"
]
}