-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
101 lines (101 loc) · 2.4 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
{
"name": "monologue.js",
"description": "EventEmitter replacement with AMQP-style bindings and other advanced features. Compatible with postal.js's API.",
"version": "0.3.5",
"homepage": "https://github.com/postaljs/monologue.js",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/monologue.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [
{
"name": "Jim Cowart",
"url": "http://ifandelse.com"
},
{
"name": "Doug Neiner",
"url": "http://dougneiner.com"
},
{
"name": "Alex Robson",
"url": "http://nerdventure.io"
},
{
"name": "Ryan Niemeyer",
"url": "http://knockmeout.net"
}
],
"keywords": [
"monologue",
"postal",
"observer",
"event",
"emitter",
"pub/sub",
"listener",
"publisher",
"EventEmitter",
"pub",
"sub",
"eventing"
],
"bugs": {
"email": "[email protected]",
"url": "http://github.com/postaljs/monologue.js/issues"
},
"main": "lib/monologue.js",
"files": [
"lib",
"LICENSE"
],
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"lodash": "3.x",
"riveter": "0.2.0"
},
"devDependencies": {
"bower": "^1.4.1",
"express": "~3.4.7",
"gulp": "~3.8.10",
"gulp-changed": "^1.2.1",
"gulp-header": "~1.2.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-jshint": "^1.11.0",
"gulp-jscs": "^1.6.0",
"gulp-plato": "^1.0.2",
"gulp-rename": "^1.2.0",
"gulp-spawn-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "~3.0.4",
"jshint-stylish": "^2.0.0",
"karma": "^0.12.24",
"mocha": "^2.0.1",
"open": "~0.0.4",
"should": "^6.0.3",
"sinon": "~1.14.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.opensource.org/licenses/gpl-3.0.html"
}
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha -r spec/helpers/node-setup.js spec",
"start": "gulp server",
"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"
}
}