forked from entria/entria-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.82 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
82
83
84
85
86
87
88
89
{
"name": "@entria/components",
"version": "0.1.9",
"description": "Entria common components",
"keywords": [
"react",
"entria",
"common",
"components"
],
"license": "ISC",
"homepage": "https://github.com/entria/entria-components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/entria/entria-components"
},
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"devDependencies": {
"@entria/utils": "^0.0.3",
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-material-ui": "^0.3.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.48.0",
"gh-pages": "^1.0.0",
"glamor": "^3.0.0-2",
"lint-staged": "^4.0.0",
"lorem-ipsum": "^1.0.4",
"material-ui": "0.19.4",
"material-ui-scrollable-tabs": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.4.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.0",
"styled-components": "^2.1.1"
},
"dependencies": {},
"peerDependencies": {
"@entria/utils": ">=0.0.3",
"glamor": ">=3.0.0-2",
"material-ui": ">=0.19.4",
"material-ui-scrollable-tabs": ">=2.0.0",
"prop-types": ">=15.5.10",
"react": ">=0.14",
"react-dom": ">=0.14",
"react-redux": ">=5.0.5",
"react-router-dom": ">=4.1.1",
"redux": ">=3.7.0",
"styled-components": ">=2.1.1"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"lint": "eslint --ext js src",
"lint:staged": "lint-staged",
"start": "start-storybook -p 6006 -c storybook",
"demo:build": "build-storybook -c storybook",
"demo:gh-pages": "gh-pages -d storybook-static/",
"demo:publish": "npm run demo:build && npm run demo:gh-pages",
"check": "npm run lint && npm run test",
"release:patch": "npm run check && npm version patch && git push --follow-tags && npm publish --access public",
"release:minor": "npm run check && npm version minor && git push --follow-tags && npm publish --access public",
"release:major": "npm run check && npm version major && git push --follow-tags && npm publish --access public"
}
}