mobx-event-bus2
Version:
Event bus based on MobX pub/sub model.
64 lines (63 loc) • 1.47 kB
JSON
{
"name": "mobx-event-bus2",
"version": "2.0.0",
"description": "Event bus based on MobX pub/sub model.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"maintainers": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
},
{
"name": "Povilas Jurjevas",
"email": "povilas.hart@gmail.com"
}
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/kibertoad/mobx-event-bus.git"
},
"keywords": [
"mobx",
"eventBus",
"events"
],
"author": "7upcat <7upcat@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kibertoad/mobx-event-bus/issues"
},
"homepage": "https://github.com/kibertoad/mobx-event-bus#readme",
"peerDependencies": {
"mobx": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"mobx": "^5.10.0"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.js$": "babel-jest"
},
"testRegex": "test/.*.test.js$",
"testPathIgnorePatterns": [
"/node_modules/",
"/\\./"
]
},
"scripts": {
"test": "jest"
}
}