-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "material-ui-layout",
"version": "1.0.1",
"description": "Layout components for material-ui",
"main": "./lib/index.js",
"scripts": {
"build": "babel src/ -d lib/",
"flow": "flow",
"flow:coverage": "flow-coverage-report -i 'src/**/*.js' -i 'src/**/*.jsx'",
"test": "npm run eslint && npm run flow && npm run flow:coverage && echo \"Eslint && Flow && Build passed - No jest yet\"",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run test && npm run build",
"eslint": "./node_modules/.bin/eslint src/ --ext js,jsx",
"eslint-fix": "./node_modules/.bin/eslint src/ --ext js,jsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zetoff/material-ui-layout.git"
},
"keywords": [
"material-ui",
"layout",
"react"
],
"author": "polguixe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zetoff/material-ui-layout/issues"
},
"homepage": "https://github.com/Zetoff/material-ui-layout#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-meteor": "^4.2.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.72.0",
"flow-coverage-report": "^0.5.0",
"jest": "^21.0.2",
"prettier": "^1.11.1"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"@material-ui/core": "^3.9.1",
"@material-ui/icons": "^3.0.2",
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react-controllables": "^0.6.0",
"recompose": "^0.26.0"
}
}