forked from ajacksified/Mediator.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 918 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": "mediator-js",
"version": "0.9.7",
"description": "Flexible event management. Implementation of the mediator pattern.",
"author": "Jack Lawson <jlawson@olivinelabs.com>",
"main": "index",
"readmeFilename": "README.md",
"scripts": {
"test": "mocha",
"test_with_coverage": "mocha && MEDIATOR_JS_COV=1 mocha -R html-cov > coverage.html"
},
"repository": {
"type": "git",
"url": "git://github.com/ajacksified/Mediator.js.git"
},
"dependencies": {},
"devDependencies": {
"mocha": "1.7.x",
"chai": "1.4.x",
"sinon": "1.5.x",
"sinon-mocha": "0.0.3",
"sinon-chai": "2.3.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"engines": {
"node": ">=0.6.0"
},
"keywords": [
"pubsub",
"events",
"mediator",
"publish",
"subscribe",
"design patterns"
]
}