forked from ericgio/react-bootstrap-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-bootstrap-typeahead",
"version": "2.5.1",
"description": "React-based typeahead using the Bootstrap theme",
"main": "lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "./scripts/build.sh",
"check": "npm run lint && npm test",
"cleanup": "./scripts/cleanup.sh",
"lint": "eslint .",
"prepublishOnly": "npm run check && npm run build",
"start": "./scripts/buildExample.sh",
"styles": "./scripts/buildStyles.sh",
"test": "karma start karma.conf.js"
},
"keywords": [
"auto complete",
"auto suggest",
"auto-complete",
"auto-suggest",
"autocomplete",
"autosuggest",
"bootstrap",
"bootstrap tokenizer",
"bootstrap typeahead",
"bootstrap-tokenizer",
"bootstrap-typeahead",
"react",
"react autocomplete",
"react autosuggest",
"react tokenizer",
"react typeahead",
"react-autocomplete",
"react-autosuggest",
"react-bootstrap",
"react-bootstrap-tokenizer",
"react-bootstrap-typeahead",
"react-tokenizer",
"react-typeahead",
"tokenizer",
"typeahead"
],
"author": "ericgio",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.0",
"escape-string-regexp": "^1.0.5",
"invariant": "^2.2.1",
"lodash": "^4.17.2",
"prop-types": "^15.5.8",
"prop-types-extra": "^1.0.1",
"react-onclickoutside": "^6.1.1",
"react-overlays": "^0.8.1",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.2.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.2.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-imports": "^1.4.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.16.0",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"es6-promise": "^4.0.5",
"eslint": "^4.1.1",
"eslint-config-ericgio": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.1.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"marked": "^0.3.6",
"mocha": "^5.0.0",
"node-sass": "^4.5.3",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.0.0",
"react-prism": "^4.3.2",
"react-test-renderer": "^16.0.0",
"react-waypoint": "^8.0.0",
"sinon": "^4.3.0",
"style-loader": "^0.20.1",
"webpack": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ericgio/react-bootstrap-typeahead.git"
},
"bugs": "https://github.com/ericgio/react-bootstrap-typeahead/issues"
}