-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "mui-redux-alerts",
"version": "0.2.0",
"description": "Material-UI + Redux Dialogs and Snackbars",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src test --ext jsx --ext js --color",
"prepublish": "npm run lint && npm run build",
"prebuild": "npm run clean",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"postbuild": "rimraf example/lib/ && cp -R lib/ example/lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThadeuLuz/mui-redux-alerts.git"
},
"keywords": [
"Material-UI",
"Redux",
"React",
"Dialogs",
"Snackbars",
"Material-Design"
],
"author": "Thadeu Luz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThadeuLuz/mui-redux-alerts/issues"
},
"homepage": "https://github.com/ThadeuLuz/mui-redux-alerts#readme",
"dependencies": {},
"peerDependencies": {
"material-ui": "*",
"redux": "*",
"redux-thunk": "*"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^4.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"material-ui": "^0.17.1",
"react": "^15.4.2",
"prop-types": "^15.6.0",
"rimraf": "^2.6.1"
}
}