-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 802 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 802 Bytes
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
{
"name": "mini-mediator",
"author": "Kurniawan Junaidy <iwan.junaid@gmail.com>",
"version": "1.1.2",
"license": "MIT",
"description": "Simple implementation of mediator pattern for Node.JS",
"homepage": "https://github.com/iwanjunaid/mini-mediator",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:iwanjunaid/mini-mediator.git"
},
"keywords": [
"mediator",
"design patterns"
],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2"
},
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.0"
}
}