-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
85 lines (85 loc) · 2.52 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
80
81
82
83
84
85
{
"name": "react-selectize",
"version": "3.0.1",
"description": "A Stateless & Flexible Select component for React inspired by Selectize",
"main": "src/index.js",
"scripts": {
"start": "gulp",
"test": "mocha test/index.ls --compilers ls:livescript",
"coverage": "istanbul cover _mocha -- test/index.ls --require should --compilers ls:livescript",
"coveralls": "istanbul cover _mocha -- test/index.ls --require should --compilers ls:livescript && cat coverage/lcov.info | coveralls"
},
"author": "Furqan Zafar",
"dependencies": {
"prelude-extension": "^0.1.0",
"prelude-ls": "^1.1.1",
"tether": "^1.1.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-transition-group": "^1.1.2",
"react-dom": "^15.0.0 || ^16.0.0",
"react-dom-factories": "^1.0.0"
},
"browserify-shim": {
"prelude-extension": "global:preludeExtension",
"react": "global:React",
"react-transition-group": "global:ReactTransitionGroup",
"react-dom": "global:ReactDOM",
"react-dom-factories": "global:ReactDOMFactories",
"react-transition-group/CSSTransitionGroup": "global:React.addons.CSSTransitionGroup",
"tether": "global:Tether"
},
"devDependencies": {
"async-ls": "0.0.3",
"brace": "git+https://github.com/furqanZafar/brace.git",
"brfs": "^1.4.1",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.10",
"coveralls": "^2.11.4",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-if": "^2.0.2",
"gulp-livescript": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-stylus": "^2.0.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.4",
"istanbul": "^0.4.5",
"jquery-browserify": "^1.8.1",
"jsdom": "^11.1.0",
"liveify": "^2.0.0",
"livescript": "^1.5.0",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.0.0",
"nib": "^1.1.0",
"react": "^16.0.0-beta.2",
"react-dom": "^16.0.0-beta.2",
"react-dom-factories": "^1.0.0",
"react-router": "3.0.5",
"react-tools": "^0.13.3",
"react-transition-group": "^1.1.2",
"run-sequence": "^2.1.0",
"should": "^11.2.1",
"underscore": "^1.8.3",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/furqanZafar/react-selectize.git"
},
"typings": "./src/index.d.ts",
"keywords": [
"react-component",
"select",
"selectize",
"multiselect",
"singleselect",
"simpleselect",
"tags",
"dropdown",
"combobox"
]
}