http-micro
Version:
Micro-framework on top of node's http module
55 lines (54 loc) • 1.68 kB
JSON
{
"name": "http-micro",
"version": "3.2.0",
"description": "Micro-framework on top of node's http module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib/*",
"build": "npm run clean && npm run tsc",
"tsc": "tsc",
"watch": "tsc -w",
"test": "echo \"No tests available.\" && exit 0",
"prepublishOnly": "npm run build",
"example": "nodemon --ext ts,tsx,js,jsx --watch ./ --exec ts-node --project ./examples/ ./examples/index.ts",
"autoplay": "nodemon --ext ts,tsx,js,jsx --watch ./ --exec ts-node --project ./playground/ ./playground/autoplay.ts"
},
"repository": "github:prasannavl/http-micro",
"keywords": [
"server",
"http",
"micro-framework"
],
"author": "Prasanna V. Loganathar <pvl@prasannavl.com> (https://www.prasannavl.com/)",
"license": "Apache-2.0",
"devDependencies": {
"@types/bluebird": "^3.5.8",
"bluebird": "^3.5.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"ts-node": "^3.2.0",
"typescript": "^2.4.1"
},
"dependencies": {
"@types/accepts": "^1.3.2",
"@types/content-disposition": "^0.5.2",
"@types/content-type": "^1.1.0",
"@types/debug": "0.0.29",
"@types/http-errors": "^1.5.34",
"@types/mime-types": "^2.1.0",
"@types/node": "^8.0.10",
"@types/on-finished": "^2.2.29",
"@types/raw-body": "^2.1.4",
"accepts": "^1.3.3",
"content-disposition": "^0.5.2",
"content-type": "^1.0.2",
"debug": "^2.6.3",
"http-errors": "^1.6.1",
"mime-types": "^2.1.15",
"on-finished": "^2.3.0",
"path-to-regexp": "^1.7.0",
"raw-body": "^2.2.0",
"type-is": "^1.6.15"
}
}