-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1 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
{
"name": "connect-lrdd",
"version": "0.1.1",
"description": "Link-based Resource Descriptor Document (LRDD) middleware for Connect.",
"keywords": [
"connect",
"express",
"lrdd",
"hostmeta",
"host-meta",
"webfinger"
],
"author": {
"name": "Jared Hanson",
"email": "jaredhanson@gmail.com",
"url": "http://www.jaredhanson.net/"
},
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/connect-lrdd.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/connect-lrdd/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"multihash": "0.1.x"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x",
"chai-connect-middleware": "0.3.x"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
}
}