forked from postaljs/postal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.15 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
129
130
131
132
{
"name": "postal",
"description": "Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.",
"version": "1.0.4",
"homepage": "http://github.com/postaljs/postal.js",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [
{
"name": "Jim Cowart",
"url": "http://ifandelse.com"
},
{
"name": "Alex Robson",
"url": "http://nerdventure.io"
},
{
"name": "Nicholas Cloud",
"url": "http://nicholascloud.com"
},
{
"name": "Doug Neiner",
"url": "http://dougneiner.com"
},
{
"name": "Jonathan Creamer",
"url": "http://freshbrewedcode.com/jonathancreamer"
},
{
"name": "Elijah Manor",
"url": "http://www.elijahmanor.com"
},
{
"name": "Ger Hobbelt",
"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/"
},
{
"name": "John-David Dalton",
"url": "http://www.allyoucanleet.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": "3.x"
},
"devDependencies": {
"bower": "^1.4.1",
"express": "^4.12.3",
"gulp": "^3.8.8",
"gulp-beautify": "^1.1.2",
"gulp-changed": "^1.2.1",
"gulp-header": "^1.2.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.10.0",
"gulp-plato": "^1.0.2",
"gulp-rename": "^1.2.2",
"gulp-spawn-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "~2.2.9",
"istanbul": "^0.3.13",
"jshint-stylish": "^1.0.2",
"karma": "^0.12.31",
"mocha": "^2.2.4",
"open": "~0.0.4",
"should": "^6.0.1",
"sinon": "~1.14.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",
"test-lodash": "./node_modules/mocha/bin/mocha -r spec/helpers/node-lodash-build-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"
]
}