-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.01 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "medi",
"version": "0.2.4",
"description": "Medi, a mediator that supports event filtering",
"keywords": [
"dispatcher",
"mediator",
"pubsub",
"eventbus",
"event-filtering",
"filtering"
],
"main": "medi.js",
"scripts": {
"test": "nyc ava",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricklancee/medi.git"
},
"author": "Rick Lancee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ricklancee/medi/issues"
},
"homepage": "https://github.com/ricklancee/medi#readme",
"devDependencies": {
"ava": "^0.17.0",
"nyc": "^10.2.0",
"sinon": "^1.17.6",
"babel-preset-env": "^1.3.3"
},
"ava": {
"require": [
"babel-core/register"
]
},
"babel": {
"presets": [
"babel-preset-env"
],
"plugins": [
"transform-runtime"
],
"ignore": "test.js",
"env": {
"development": {
"sourceMaps": "inline"
}
}
}
}