forked from eschnou/node-ostatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 859 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ "name" : "ostatus"
, "description" : "An implementation of the OStatus protocol stack for nodejs."
, "engines": { "node" : ">=0.4.0" }
, "version": "v0.1.0"
, "keywords": ["ostatus", "hcard", "pubsubhubbub", "atom", "activity", "salmon"]
, "homepage": "http://github.com/eschnou/node-ostatus"
, "author": "Laurent Eschenauer <[email protected]> (http://eschnou.com)"
, "bin" : { "status" : "./bin/status.js", "profile": "./bin/profile.js", "webfinger": "./bin/webfinger.js"}
, "main" : "./lib/ostatus"
, "scripts" : {
"install": "node-waf configure build"
,"update": "node-waf build"
}
, "repository" : { "type": "git", "url": "https://github.com/eschnou/node-ostatus.git"}
, "dependencies" : {
"mu" : "http://github.com/raycmorgan/Mu/tarball/v2"
,"sax" : ">=0.1.2"
,"flow" : "0.2.x"
,"ltx" : "*"
,"request" : "*"
}
}