-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
87 lines (87 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "postal.request-response",
"description": "postal.js add-on that provides a request/response pattern API.",
"version": "0.3.1",
"homepage": "https://github.com/postaljs/postal.request-response",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.request-response.git"
},
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [
{
"name": "Jim Cowart",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://ifandelse.com"
}
],
"keywords": [
"pub/sub",
"pub",
"sub",
"messaging",
"message",
"bus",
"event",
"mediator",
"broker",
"envelope",
"request",
"response",
"postal",
"postaljs",
"postal.js"
],
"bugs": {
"email": "PleaseJustUseTheIssuesPage@github.com",
"url": "https://github.com/postaljs/postal.request-response/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/postal.request-response.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"lodash": "~2.4.1"
},
"devDependencies": {
"bower": "~1.2.8",
"express": "~3.4.7",
"gulp": "~3.8.10",
"gulp-beautify": "~1.0.3",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-plato": "~0.1.0",
"gulp-rename": "~0.2.1",
"gulp-rimraf": "0.0.8",
"gulp-uglify": "~0.1.0",
"gulp-util": "~2.2.9",
"istanbul": "^0.3.2",
"mocha": "^2.0.1",
"open": "~0.0.4",
"postal": "^0.12.2",
"q": "~1.0.1",
"should": "^4.4.1",
"tiny-lr": "0.0.5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha -r spec/helpers/node-setup.js spec",
"build": "gulp",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -x 'spec/**/*' -- -r spec/helpers/node-setup.js spec spec/*.spec.js",
"show-coverage": "open ./coverage/lcov-report/index.html",
"start": "gulp server"
},
"files": [
"lib",
"LICENSE"
]
}