Name: js-handler/node_modules/restify/package.json
| 1: | { |
| 2: | "author": { |
| 3: | "name": "Mark Cavage", |
| 4: | "email": "[email protected]" |
| 5: | }, |
| 6: | "contributors": [ |
| 7: | { |
| 8: | "name": "Nathanael Anderson" |
| 9: | }, |
| 10: | { |
| 11: | "name": "Adam Argo" |
| 12: | }, |
| 13: | { |
| 14: | "name": "Dominic Barnes" |
| 15: | }, |
| 16: | { |
| 17: | "name": "Josh Clulow" |
| 18: | }, |
| 19: | { |
| 20: | "name": "Jonathan Dahan" |
| 21: | }, |
| 22: | { |
| 23: | "name": "Domenic Denicola" |
| 24: | }, |
| 25: | { |
| 26: | "name": "Bryan Donovan" |
| 27: | }, |
| 28: | { |
| 29: | "name": "Paul Bouzakis" |
| 30: | }, |
| 31: | { |
| 32: | "name": "Shaun Berryman" |
| 33: | }, |
| 34: | { |
| 35: | "name": "Ben Hale" |
| 36: | }, |
| 37: | { |
| 38: | "name": "Ben Howes" |
| 39: | }, |
| 40: | { |
| 41: | "name": "Ben Hutchison" |
| 42: | }, |
| 43: | { |
| 44: | "name": "Erik Kristensen" |
| 45: | }, |
| 46: | { |
| 47: | "name": "Steve Mason" |
| 48: | }, |
| 49: | { |
| 50: | "name": "Trent Mick" |
| 51: | }, |
| 52: | { |
| 53: | "name": "Colin O'Brien" |
| 54: | }, |
| 55: | { |
| 56: | "name": "Falco Nogatz" |
| 57: | }, |
| 58: | { |
| 59: | "name": "Pedro Palazón" |
| 60: | }, |
| 61: | { |
| 62: | "name": "Andrew Robinson" |
| 63: | }, |
| 64: | { |
| 65: | "name": "Isaac Schlueter" |
| 66: | }, |
| 67: | { |
| 68: | "name": "Andrew Sliwinski" |
| 69: | }, |
| 70: | { |
| 71: | "name": "Richardo Stuven" |
| 72: | }, |
| 73: | { |
| 74: | "name": "Matt Smillie" |
| 75: | }, |
| 76: | { |
| 77: | "name": "Diego Torres" |
| 78: | }, |
| 79: | { |
| 80: | "name": "Mike Williams" |
| 81: | } |
| 82: | ], |
| 83: | "name": "restify", |
| 84: | "homepage": "http://mcavage.github.com/node-restify", |
| 85: | "description": "REST framework", |
| 86: | "version": "2.6.0", |
| 87: | "repository": { |
| 88: | "type": "git", |
| 89: | "url": "git://github.com/mcavage/node-restify.git" |
| 90: | }, |
| 91: | "main": "lib/index.js", |
| 92: | "directories": { |
| 93: | "lib": "./lib" |
| 94: | }, |
| 95: | "bin": { |
| 96: | "report-latency": "./bin/report-latency" |
| 97: | }, |
| 98: | "engines": { |
| 99: | "node": ">=0.8" |
| 100: | }, |
| 101: | "dependencies": { |
| 102: | "assert-plus": "0.1.2", |
| 103: | "backoff": "2.2.0", |
| 104: | "bunyan": "0.21.1", |
| 105: | "deep-equal": "0.0.0", |
| 106: | "escape-regexp-component": "1.0.2", |
| 107: | "formidable": "1.0.14", |
| 108: | "http-signature": "0.10.0", |
| 109: | "keep-alive-agent": "0.0.1", |
| 110: | "lru-cache": "2.3.0", |
| 111: | "mime": "1.2.9", |
| 112: | "negotiator": "0.2.5", |
| 113: | "node-uuid": "1.4.0", |
| 114: | "once": "1.1.1", |
| 115: | "qs": "0.6.4", |
| 116: | "semver": "1.1.4", |
| 117: | "spdy": "1.8.2", |
| 118: | "verror": "1.3.6", |
| 119: | "dtrace-provider": "0.2.8" |
| 120: | }, |
| 121: | "optionalDependencies": { |
| 122: | "dtrace-provider": "0.2.8" |
| 123: | }, |
| 124: | "devDependencies": { |
| 125: | "cover": "0.2.8", |
| 126: | "filed": "0.0.7", |
| 127: | "nodeunit": "0.8.0", |
| 128: | "watershed": "0.3.0" |
| 129: | }, |
| 130: | "scripts": { |
| 131: | "test": "nodeunit ./test" |
| 132: | }, |
| 133: | "readme": "# restify\n\n[](https://travis-ci.org/mcavage/node-restify)\n\n[restify](http://mcavage.github.com/node-restify) is a smallish framework,\nsimilar to [express](http://expressjs.com) for building REST APIs. For full\ndetails, see http://mcavage.github.com/node-restify.\n\n# Usage\n\n## Server\n\n var restify = require('restify');\n\n var server = restify.createServer({\n name: 'myapp',\n version: '1.0.0'\n });\n server.use(restify.acceptParser(server.acceptable));\n server.use(restify.queryParser());\n server.use(restify.bodyParser());\n\n server.get('/echo/:name', function (req, res, next) {\n res.send(req.params);\n return next();\n });\n\n server.listen(8080, function () {\n console.log('%s listening at %s', server.name, server.url);\n });\n\n## Client\n\n var assert = require('assert');\n var restify = require('restify');\n\n var client = restify.createJsonClient({\n url: 'http://localhost:8080',\n version: '~1.0'\n });\n\n client.get('/echo/mark', function (err, req, res, obj) {\n assert.ifError(err);\n console.log('Server returned: %j', obj);\n });\n\n# Installation\n\n $ npm install restify\n\n## License\n\nThe MIT License (MIT)\nCopyright (c) 2012 Mark Cavage\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n## Bugs\n\nSee <https://github.com/mcavage/node-restify/issues>.\n\n## Mailing list\n\nSee the\n[Google group](https://groups.google.com/forum/?hl=en&fromgroups#!forum/restify)\n.\n", |
| 134: | "readmeFilename": "README.md", |
| 135: | "bugs": { |
| 136: | "url": "https://github.com/mcavage/node-restify/issues" |
| 137: | }, |
| 138: | "_id": "[email protected]", |
| 139: | "dist": { |
| 140: | "shasum": "bf3de04fb7de400b012d4141826f3129c67f3772" |
| 141: | }, |
| 142: | "_from": "[email protected]", |
| 143: | "_resolved": "https://registry.npmjs.org/restify/-/restify-2.6.0.tgz" |
| 144: | } |
