-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "react-mediator",
"version": "0.0.1",
"description": "Message broker HOC for React",
"main": "lib/index.js",
"scripts": {
"build": "npx babel mediator --out-dir lib",
"lint": "eslint . --ext .js --debug && prettier --check **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qudde/react-mediator.git"
},
"keywords": [
"pubsub",
"mediator",
"events"
],
"author": "Max Bondén",
"license": "ISC",
"bugs": {
"url": "https://github.com/qudde/react-mediator/issues"
},
"homepage": "https://github.com/qudde/react-mediator#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-react": "^7.12.4"
},
"dependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2"
}
}