-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
41 lines (41 loc) · 923 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.11.0",
"description": "Flexible event management. Implementation of the mediator pattern.",
"author": "Jack Lawson <[email protected]>",
"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": {
"chai": "^4.1.2",
"mocha": "^5.0.4",
"sinon": "^4.4.8",
"sinon-chai": "^3.0.0",
"sinon-mocha": "0.0.3"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"engines": {
"node": ">=0.6.0"
},
"keywords": [
"pubsub",
"events",
"mediator",
"publish",
"subscribe",
"design patterns"
]
}