forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "react-select",
"version": "0.4.7",
"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.2.1",
"react-input-autosize": "^0.4.3"
},
"devDependencies": {
"babel-eslint": "^3.0.1",
"babel-jest": "^5.0.1",
"eslint": "^0.19.0",
"eslint-plugin-react": "^2.2.0",
"gulp": "^3.8.11",
"jest-cli": "^0.4.0",
"react": ">=0.13.2",
"react-component-gulp-tasks": "^0.4.7"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"react-input-autosize": "global:AutosizeInput"
},
"scripts": {
"test": "jest; true",
"lint": "eslint ./; true"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testPathDirs": [
"<rootDir>/src"
]
},
"keywords": [
"react",
"react-component",
"select",
"multiselect",
"combobox",
"input",
"form",
"ui"
]
}