-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "search-suggestion",
"version": "1.0.3",
"description":
"Simple, lightweight, flexible search suggestion, autocomplete component",
"main": "dist/index.js",
"author":
"David Nguyen <dzungnguyen179@gmail.com> (dzungnguyen179@gmail.com)",
"keywords": [
"enhanced input",
"react",
"autocomplete",
"autosuggest",
"typeahead",
"dropdown",
"select",
"combobox",
"omnibox",
"multiselect",
"multiple selection"
],
"dependencies": {},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.2",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.11",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.2",
"sinon": "^4.0.2"
},
"scripts": {
"start": "react-scripts start",
"dev": "react-scripts start",
"prebuild": "rimraf dist/*",
"build": "babel src/Suggestion --out-dir dist",
"test": "react-scripts test --env=jsdom",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"eslint": "eslint ./src/**/*.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChoTotOSS/search-suggestion.git"
},
"bugs": {
"url": "https://github.com/ChoTotOSS/search-suggestion/issues"
},
"homepage":
"https://github.com/ChoTotOSS/search-suggestion/blob/master/README.md"
}