-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 999 Bytes
/
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
{
"name": "suber",
"version": "5.0.1",
"description": "A message bus / pubsub compatible with Redux middlewares",
"main": "lib/bus",
"scripts": {
"build": "npm run lint && babel src -d lib --ignore \"**/*.test.js\" ",
"lint": "standard --fix",
"test": "npm run lint && jest",
"dev": "jest --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oskarhane/suber.git"
},
"author": {
"name": "Oskar Hane",
"email": "npm@oskarhane.com"
},
"homepage": "http://oskarhane.com",
"keywords": [
"pubsub",
"channels",
"event bus",
"message bus"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.18.0",
"jest-cli": "^18.1.0",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.2",
"redux-observable": "^0.12.2",
"redux-saga": "^0.14.2",
"rxjs": "^5.0.3",
"standard": "^8.6.0"
}
}