forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.06 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
{
"name": "react-select",
"version": "0.7.11-intelie",
"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.3",
"element-size": "^1.1.1",
"react-input-autosize": "^0.5.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.23",
"chai": "^3.0.0",
"coveralls": "^2.11.3",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"gulp": "^3.9.0",
"istanbul": "^0.3.17",
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"react": ">=0.13.3",
"react-gravatar": "2.0.0",
"react-component-gulp-tasks": "^0.7.0",
"sinon": "^1.15.4",
"unexpected": "^9.2.1",
"unexpected-dom": "^1.2.0",
"unexpected-sinon": "^6.4.1"
},
"peerDependencies": {
"react": ">=0.13.0",
"immutable": ">=3.7.0"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"react-input-autosize": "global:AutosizeInput",
"immutable": "global:Immutable"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:major": "gulp bump:major",
"bump:minor": "gulp bump:minor",
"cover": "istanbul cover node_modules/.bin/_mocha -- -u exports --compilers js:babel/register -R spec",
"coveralls": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -u exports --compilers js:babel/register -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"examples": "gulp dev:server",
"lint": "eslint .",
"publish:examples": "gulp publish:examples",
"release": "gulp release",
"start": "gulp dev",
"test": "mocha --compilers js:babel/register",
"watch": "gulp watch:lib"
},
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"select",
"ui"
]
}