Files
mia/node_modules/router/package.json

40 lines
1.0 KiB
JSON

{
"name": "router",
"description": "Simple middleware-style router",
"version": "1.1.5",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"repository": "pillarjs/router",
"dependencies": {
"array-flatten": "2.1.1",
"debug": "~2.2.0",
"methods": "~1.1.2",
"parseurl": "~1.3.1",
"path-to-regexp": "0.1.7",
"setprototypeof": "1.0.2",
"utils-merge": "1.0.0"
},
"devDependencies": {
"after": "0.8.2",
"finalhandler": "0.5.1",
"istanbul": "0.4.5",
"mocha": "2.5.3",
"supertest": "1.1.0"
},
"files": [
"lib/",
"LICENSE",
"HISTORY.md",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}