-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1003 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1003 Bytes
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
{
"name": "superglue",
"version": "0.1.3",
"description": "Sticky mediator that promotes loose-coupling and makes app-flow clearer.",
"keywords": [
"superglue",
"glue",
"mediator",
"pubsub",
"events",
"design patterns",
"express",
"connect"
],
"author": {
"name": "David Chubbs",
"email": "davidchubbuck@gmail.com",
"url": "https://github.com/davidchubbs"
},
"repository": {
"type": "git",
"url": "git://github.com/davidchubbs/superglue.git"
},
"bugs": {
"url": "https://github.com/davidchubbs/superglue/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"scripts": {
"test": "mocha",
"dev": "npm test && jshint lib/ && wr --chime 0 'npm test && jshint lib/' lib test"
},
"devDependencies": {
"jshint": "~2.5",
"mocha": "~1.21",
"should": "~4.0",
"wr": "~1.3"
},
"engines": {
"node": ">=0.6.0"
}
}