forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 901 Bytes
/
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
{
"name": "react-select",
"version": "0.4.0",
"description": "A Select control built with and for ReactJS",
"main": "lib/Select.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-select.git"
},
"dependencies": {
"classnames": "^1.1.4",
"lodash": "^3.5.0",
"react": ">=0.12.0",
"react-input-autosize": "^0.4.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"react-component-gulp-tasks": "^0.4.2"
},
"browserify-shim": {
"classnames": "global:classnames",
"react": "global:React",
"react-input-autosize": "global:AutosizeInput",
"lodash": "global:_"
},
"scripts": {
"test": "echo \"no tests yet\" && exit 0"
},
"keywords": [
"react",
"react-component",
"select",
"multiselect",
"combobox",
"input",
"form",
"ui"
]
}