-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "jss-material-ui",
"version": "2.0.5",
"description": "A styled Material-UI.",
"main": "lib/styled.js",
"files": [
"lib/**/*.js",
"README.md",
"LICENSE",
"demo.gif"
],
"scripts": {
"build": "babel src -d lib",
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:unit": "jest",
"lint": "standard",
"prepublish": "babel src -d lib",
"release": "release-it",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "build-storybook -o storybook && gh-pages -d storybook && rm -r storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacquesbonet/jss-material-ui.git"
},
"keywords": [
"react",
"material",
"style",
"component"
],
"author": "Jacques Bonet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacquesbonet/material-ui/issues-styled"
},
"homepage": "https://github.com/jacquesbonet/jss-material-ui#readme",
"dependencies": {},
"devDependencies": {
"@storybook/addon-actions": "^3.x",
"@storybook/react": "^3.x",
"babel-cli": "6.x",
"babel-core": "6.x",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "6.x",
"babel-plugin-transform-object-assign": "6.x",
"babel-plugin-transform-object-rest-spread": "6.x",
"babel-preset-env": "1.x",
"babel-preset-react": "6.x",
"classnames": "2.x",
"gh-pages": "^2.0.1",
"leaflet": "1.x",
"@material-ui/core": "3.x",
"prop-types": "15.x",
"react": "16.x",
"react-leaflet": "1.x",
"react-dom": "16.x",
"release-it": "7.x"
}
}