forked from enkidevs/react-search-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "react-search-input",
"version": "0.8.1",
"description": "Simple react.js component for a search input, providing a filter function.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"sinon": "^1.17.3",
"webpack": "^1.12.15"
},
"scripts": {
"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",
"license": "MIT",
"bugs": {
"url": "https://github.com/enkidevs/react-search-input/issues"
},
"homepage": "https://github.com/enkidevs/react-search-input",
"dependencies": {
"fuse.js": "2.2.0"
}
}