forked from postaljs/postal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·128 lines (128 loc) · 3.16 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "postal",
"description": "Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.",
"version": "0.11.2",
"homepage": "http://github.com/postaljs/postal.js",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.js.git"
},
"author": "Jim Cowart (http://freshbrewedcode.com/jimcowart)",
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://freshbrewedcode.com/alexrobson"
},
{
"name": "Nicholas Cloud",
"email": "[email protected]",
"url": "http://nicholascloud.com"
},
{
"name": "Doug Neiner",
"email": "[email protected]",
"url": "http://dougneiner.com"
},
{
"name": "Jonathan Creamer",
"email": "[email protected]",
"url": "http://freshbrewedcode.com/jonathancreamer"
},
{
"name": "Elijah Manor",
"email": "[email protected]",
"url": "http://www.elijahmanor.com"
},
{
"name": "Ger Hobbelt",
"email": "[email protected]",
"url": "http://hebbut.net/"
},
{
"name": "Christian Haas",
"url": "http://github.com/dertseha"
},
{
"name": "Mark Swaffer",
"url": "https://github.com/swaff"
},
{
"name": "Sergio Pereira",
"url": "https://github.com/sergiopereiraTT"
},
{
"name": "Anthony van der Hoorn",
"url": "http://blog.anthonyvanderhoorn.com/"
}
],
"keywords": [
"pub/sub",
"pub",
"sub",
"messaging",
"message",
"bus",
"event",
"mediator",
"broker",
"envelope"
],
"bugs": {
"email": "[email protected]",
"url": "http://github.com/postaljs/postal.js/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/postal.js",
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"lodash": "~2.4.1"
},
"devDependencies": {
"bower": "~1.2.8",
"expect.js": "~0.2.0",
"express": "~3.4.7",
"gulp": "^3.8.8",
"gulp-beautify": "~1.0.3",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-plato": "^0.2.1",
"gulp-rename": "^1.2.0",
"gulp-spawn-mocha": "^0.5.1",
"gulp-uglify": "^0.3.0",
"gulp-util": "~2.2.9",
"istanbul": "^0.3.2",
"karma": "^0.12.24",
"mocha": "^2.0.1",
"open": "~0.0.4",
"should": "^4.0.4",
"sinon": "~1.11.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"build": "gulp",
"test": "./node_modules/mocha/bin/mocha -r spec/helpers/node-setup.js spec",
"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"
]
}