This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "react-redux-dropdown",
"version": "1.4.1",
"description": "Simple dropdoown React component using Redux to manage its state",
"keywords": [
"react",
"redux",
"react-component",
"redux-ui",
"dropdown",
"react-redux-component"
],
"main": "transpiled/index.js",
"scripts": {
"start": "webpack-dev-server --inline --config webpack.dev.js",
"build": "babel src -d transpiled -s inline",
"lint": "standard 'src/**/*.js'",
"prepublish": "npm run build"
},
"author": "Ricard Sole Casas <ricardsolecasas@gmail.com> (https://github.com/rcsole)",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-export-extensions": "6.8.0",
"babel-plugin-transform-function-bind": "6.8.0",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-plugin-uglify": "1.0.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"html-webpack-plugin": "2.22.0",
"lodash": "4.13.1",
"react": "15.2.1",
"react-addons-test-utils": "15.2.1",
"react-dom": "15.2.1",
"standard": "7.1.2",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"standard": {
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"globals": [
"MouseEvent"
]
},
"dependencies": {
"@rcsole/redux-ui": "1.0.0",
"lodash.isequal": "4.2.0",
"react-redux": "4.4.5",
"redux": "3.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcsole/react-redux-dropdown.git"
},
"bugs": {
"url": "https://github.com/rcsole/react-redux-dropdown/issues"
},
"homepage": "https://github.com/rcsole/react-redux-dropdown#readme"
}