UNPKG

924 BJSONView Raw
1{
2 "name": "http-signature",
3 "description": "Reference implementation of Joyent's HTTP Signature scheme.",
4 "version": "1.3.6",
5 "license": "MIT",
6 "author": "Joyent, Inc",
7 "contributors": [
8 "Mark Cavage <mcavage@gmail.com>",
9 "David I. Lehn <dil@lehn.org>",
10 "Patrick Mooney <patrick.f.mooney@gmail.com>"
11 ],
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/joyent/node-http-signature.git"
15 },
16 "homepage": "https://github.com/joyent/node-http-signature/",
17 "bugs": "https://github.com/joyent/node-http-signature/issues",
18 "keywords": [
19 "https",
20 "request"
21 ],
22 "engines": {
23 "node": ">=0.10"
24 },
25 "main": "lib/index.js",
26 "files": [
27 "lib"
28 ],
29 "scripts": {
30 "test": "tap test/*.js"
31 },
32 "dependencies": {
33 "assert-plus": "^1.0.0",
34 "jsprim": "^2.0.2",
35 "sshpk": "^1.14.1"
36 },
37 "devDependencies": {
38 "tap": "0.4.2",
39 "uuid": "^2.0.2"
40 }
41}