-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (27 loc) · 756 Bytes
/
package.json
File metadata and controls
31 lines (27 loc) · 756 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
{
"name": "jsonrpc-client",
"description": "Lightweight JSON-RPC client using scoped-http-client",
"keywords": ["json-rpc", "jsonrpc", "coffeescript"],
"version": "0.1.1",
"author": "Andy Fowler (http://github.com/andyfowler)",
"repository": {
"type" : "git",
"url" : "https://github.com/andyfowler/node-jsonrpc-client.git"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/andyfowler/node-jsonrpc-client/raw/master/LICENSE"
}],
"main": "./lib/index.js",
"directories": {
"lib": "./lib/"
},
"dependencies": {
"scoped-http-client": ">= 0.9.4"
},
"devDependencies": {
"coffee-script": ">=1.1.2",
"nodeunit": ">=0.6.0",
"nock": ">=0.3.1"
}
}