forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "react-select",
"version": "0.5.1",
"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": "^2.1.2",
"react-input-autosize": "^0.4.4"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-eslint": "^3.1.15",
"chai": "^3.0.0",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"gulp": "^3.9.0",
"istanbul": "^0.3.15",
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"mocha-jsdom": "^0.4.0",
"react": ">=0.13.3",
"react-component-gulp-tasks": "^0.7.0",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"react": ">=0.13.3"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"react-input-autosize": "global:AutosizeInput"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:major": "gulp bump:major",
"bump:minor": "gulp bump:minor",
"start": "gulp dev",
"examples": "gulp dev:server",
"lint": "eslint .",
"release": "gulp release",
"test": "mocha --compilers js:babel/register",
"cover": "istanbul cover node_modules/.bin/_mocha -- -u exports --compilers js:babel/register -R spec",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component",
"select",
"multiselect",
"combobox",
"input",
"form",
"ui"
]
}