-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 1.99 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
{
"name": "postal.preserve",
"description": "Add-on for postal.js that provides message durability features.",
"version": "0.2.0",
"homepage": "http://github.com/postaljs/postal.preserve",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.preserve.git"
},
"author": "Jim Cowart (http://freshbrewedcode.com/jimcowart)",
"contributors": [{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://freshbrewedcode.com/jimcowart"
}],
"keywords": [
"pub/sub",
"pub",
"sub",
"messaging",
"message",
"bus",
"event",
"mediator",
"broker",
"envelope",
"durability",
"preserve",
"postal",
"postal.js"
],
"bugs": {
"email": "[email protected]",
"url": "http://github.com/postaljs/postal.preserve/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/postal.preserve.js",
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"lodash": "~2.4.1",
"conduitjs": "~0.3.0",
"postal": "~0.10.3"
},
"bundleDependencies": [
"lodash",
"conduitjs"
],
"devDependencies": {
"bower": "~1.2.8",
"gulp-util": "~2.2.9",
"gulp": "~3.6.1",
"gulp-imports": "~0.0.1",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
"gulp-uglify": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-plato": "^0.2.1",
"gulp-beautify": "~1.0.3",
"express": "~3.4.7",
"open": "~0.0.4",
"expect.js": "~0.2.0"
},
"licenses": [{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}],
"scripts": {
"test": "mocha ./spec/*.js",
"build": "gulp",
"start": "gulp server"
},
"files": [
"lib",
"LICENSE"
]
}