forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.35 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
{
"name": "react-select",
"version": "1.0.0-rc.2",
"description": "A Select control built with and for ReactJS",
"main": "lib/Select.js",
"style": "dist/react-select.min.css",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-select.git"
},
"dependencies": {
"classnames": "^2.2.4",
"react-input-autosize": "^1.1.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.15.0",
"gulp": "^3.9.1",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^0.4.5",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"react": "^15.0",
"react-addons-shallow-compare": "^15.0",
"react-addons-test-utils": "^15.0",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^15.0",
"react-gravatar": "^2.4.5",
"react-highlight-words": "^0.3.0",
"react-virtualized": "^7.23.0",
"react-virtualized-select": "^1.4.0",
"sinon": "^1.17.5",
"unexpected": "^10.17.0",
"unexpected-dom": "^3.1.0",
"unexpected-react": "^3.2.4",
"unexpected-sinon": "^10.4.0"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"react-dom": "global:ReactDOM",
"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",
"cover": "istanbul cover _mocha -- -u exports --compilers js:babel/register -R spec",
"coveralls": "NODE_ENV=test istanbul cover _mocha --report lcovonly -- -u exports --compilers js:babel/register -R spec && cat coverage/lcov.info | coveralls",
"examples": "gulp dev:server",
"lint": "eslint .",
"publish:examples": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "npm run lint && mocha --compilers js:babel/register",
"watch": "gulp watch:lib"
},
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"select",
"ui"
]
}