This repository has been archived by the owner on Apr 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
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
90
91
92
93
94
95
96
97
98
{
"name": "@thx/messages",
"version": "1.0.3",
"description": "Displays banner messages in the page.",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.babel.js",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && cat coverage/lcov.info | coverbadge -o coverage/coverage.svg",
"flow": "flow",
"lint": "eslint *.js lib",
"docs": "jsdoc -c jsdoc.json",
"docs:md": "jsdoc2md -c jsdoc.json -f lib/*.js > docs/README.md",
"docs:explain": "jsdoc -X -c jsdoc.json",
"validate": "npm ls",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"repository": {
"type": "git",
"url": "https://github.com/thr-consulting/messages.git"
},
"keywords": [
"react",
"controls"
],
"author": "Mike Kornelson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-knobs": "^3.2.7",
"@storybook/addon-storyshots": "^3.2.7",
"@storybook/react": "^3.2.7",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-flow-react-proptypes": "^5.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"coverbadge": "^0.5.5",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"flow-bin": "^0.53.1",
"ink-docstrap": "^1.3.0",
"jest": "^20.0.4",
"jsdoc": "^3.5.4",
"jsdoc-babel": "^0.3.0",
"jsdoc-to-markdown": "^3.0.0",
"precommit-hook-eslint": "^3.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.6.1",
"redux": "^3.7.2",
"semantic-ui-react": "^0.72.0",
"webpack": "^3.5.4",
"webpack-node-externals": "^1.6.0"
},
"peerDependencies": {
"react": "^15.5.0",
"react-redux": "^5.0.0",
"redux": "^3.7.0",
"semantic-ui-react": "^0.72.0"
},
"dependencies": {
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"string-hash": "^1.1.3"
},
"greenkeeper": {
"ignore": [
"eslint-plugin-jsx-a11y"
]
},
"pre-commit": [
"lint",
"flow",
"test",
"docs:md"
]
}