-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 4.03 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@qiwi/redux-signal-bus",
"version": "1.0.3",
"description": "Signal bus over redux actions",
"private": false,
"main": "target/es5/index.js",
"directories": {
"source": "src/main/js",
"test": "src/test/js"
},
"files": [
"README.md",
"CHANGELOG.md",
"target"
],
"scripts": {
"flow": "flow",
"flow:coverage": "flow-coverage-report -i 'src/main/**/*.js' -t html -t json -t text --threshold 85",
"fetch_libdefs": "flow-typed install [email protected]",
"lint": "standard src/**/*.js",
"lint:fix": "yarn lint --fix",
"jest": "jest --config=jest.config.json",
"test": "yarn lint && yarn flow:coverage && yarn jest",
"docs:gen": "yarn build:es6 && docma --require flow-remove-types/register -c ./docma.json",
"docs:view": "docma serve",
"docs": "yarn docs:gen && yarn docs:view",
"test:report": "npm test && yarn coveralls:push",
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"build:es6": "flow-remove-types src/main/js --out-dir target/es6/",
"build:es5": "BABEL_ENV=production babel src/main/js --out-dir target/es5/",
"build": "rm -rf target && yarn build:es5 && yarn build:es6",
"example": "REACT_APP_ENTRY=./example/index.js SKIP_PREFLIGHT_CHECK=true react-scripts start",
"postupdate": "yarn && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/qiwi/redux-signal-bus.git"
},
"keywords": [
"redux",
"signal",
"bus",
"event",
"redux-signal-bus",
"@qiwi/redux-signal-bus"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"dependencies": {
"@qiwi/license": "^1.1.1",
"lodash": "^4.17.15",
"react-redux": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.5.4",
"@semantic-release/npm": "^5.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.7",
"docma": "^3.2.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-flow": "^1.0.1",
"flow-bin": "^0.109.0",
"flow-coverage-report": "^0.6.1",
"flow-remove-types": "^2.109.0",
"flow-typed": "^2.6.1",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "^3.2.0",
"reduce-reducers": "^1.0.4",
"redux": "^4.0.4",
"semantic-release": "^15.13.27",
"standard": "^14.3.1"
},
"peerDependencies": {
"package-c": "^2.5.4"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"globals": [
"jest",
"it",
"expect",
"describe",
"before",
"beforeAll",
"beforeEach",
"afterAll",
"after",
"afterEach",
"xdescribe",
"xit"
],
"rules": {
"use-flow-type": 1
},
"ignore": [],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}