-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "react-search-input",
"version": "0.11.3",
"description": "Simple react.js component for a search input, providing a filter function.",
"main": "lib/index.js",
"files": [
"lib"
],
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"standard": "^10.0.2",
"webpack": "^2.2.1"
},
"scripts": {
"test": "standard && jest",
"prepublish": "make clean build"
},
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/react-search-input"
},
"keywords": [
"react",
"search",
"input",
"filter",
"component",
"javascript",
"react-component"
],
"author": "Mathieu Dutour <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/enkidevs/react-search-input/issues"
},
"homepage": "https://github.com/enkidevs/react-search-input",
"dependencies": {
"fuse.js": "^3.0.0",
"prop-types": "^15.5.8"
}
}