@speedup/async-http-server
Version:
Asynchronous wrapper for HTTP server
67 lines (66 loc) • 1.57 kB
JSON
{
"name": "@speedup/async-http-server",
"version": "1.0.2",
"description": "Asynchronous wrapper for HTTP server",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"rebuild": "run-s clean build",
"test": "mocha --require ts-node/register tests/index.ts",
"coverage": "nyc npm run test",
"prepublish": "run-s test rebuild"
},
"repository": {
"type": "git",
"url": "git@github.com:SpeedUp-io/nodejs-async-http-server.git"
},
"keywords": [
"speedup",
"http",
"http-server",
"async",
"asynchronous"
],
"types": "dist/index.d.ts",
"author": "SpeedUP",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpeedUp-io/nodejs-async-http-server/issues"
},
"homepage": "https://github.com/SpeedUp-io/nodejs-async-http-server#readme",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.11.1",
"@types/portscanner": "^2.1.0",
"axios": "^0.19.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"portscanner": "^2.2.0",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"dist/**/*",
"tests/**/*",
"**/*.d.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
},
"dependencies": {}
}