-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "react-combo-search",
"version": "1.1.4",
"keywords": [
"react",
"search",
"filter",
"dropdown",
"datepicker",
"swiss knife"
],
"description": "React search/filter component",
"main": "./lib/index.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js Components --out-dir lib",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --hot --progress --colors --port 8081 --open",
"test": "mocha -r mock-local-storage --compilers js:babel-core/register --require ./test/test.js \"test/**/*@(.test.js|.test.jsx)\"",
"prepublish": "npm run build",
"postpublish": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gogoair/react-combo-search.git"
},
"author": "Bojan Todorovic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gogoair/react-combo-search/issues"
},
"homepage": "https://github.com/gogoair/react-combo-search#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"font-awesome": "^4.7.0",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mock-local-storage": "^1.0.2",
"moment": "^2.19.4",
"prettier": "^1.9.2",
"react": "^16.2.0",
"react-combo-select": "^1.1.2",
"react-datetime": "gogoair/react-datetime",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^16.0.0",
"react-test-utils": "0.0.1",
"sinon": "^1.17.4",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">15.6.1",
"react-dom": ">15.6.1"
},
"optionalDependencies": {
"font-awesome": "*",
"react-datetime": ">2.11.0",
"react-combo-select": ">1.1.0",
"moment": ">2.19.3"
}
}