forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
{
"name": "react-select",
"version": "0.2.2",
"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.0.0",
"react": "~0.12.0",
"react-input-autosize": "~0.2.0",
"reactify": "~0.15.2",
"underscore": "~1.7.0"
},
"devDependencies": {
"browserify": "~6.2.0",
"chalk": "~0.5.1",
"del": "~0.1.3",
"gulp": "~3.8.10",
"gulp-connect": "~2.2.0",
"gulp-gh-pages": "~0.4.0",
"gulp-less": "~1.3.6",
"gulp-util": "~3.0.1",
"merge-stream": "~0.1.6",
"vinyl-source-stream": "~1.0.0",
"watchify": "~2.1.1"
},
"browserify": {
"transform": [
"reactify"
]
},
"browserify-shim": {
"react": "global:React",
"underscore": "_"
},
"scripts": {
"test": "echo \"no tests yet\" && exit 0"
},
"keywords": [
"react",
"react-component",
"combobox",
"select",
"ui"
]
}