forked from insin/react-filtered-multiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "react-filtered-multiselect",
"version": "0.5.1",
"description": "Filtered multi-select React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"lint": "eslint src demo",
"start": "nwb serve-react-demo",
"test": "npm run lint"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": ">=0.14.9"
},
"devDependencies": {
"bootstrap": "^4.0.0-beta.2",
"eslint-config-jonnybuchanan": "5.0.x",
"nwb": "0.20.x",
"react": "16.x",
"react-dom": "16.x"
},
"author": "Jonny Buchanan <jonathan.buchanan@gmail.com>",
"homepage": "https://github.com/insin/react-filtered-multiselect",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/insin/react-filtered-multiselect.git"
},
"keywords": [
"react",
"react-component",
"filtered",
"multiselect",
"select-multiple"
]
}