46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "router",
|
|
"description": "Simple middleware-style router",
|
|
"version": "1.3.2",
|
|
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
|
|
"contributors": [
|
|
"Blake Embrey <hello@blakeembrey.com>"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "pillarjs/router",
|
|
"dependencies": {
|
|
"array-flatten": "2.1.1",
|
|
"debug": "2.6.9",
|
|
"methods": "~1.1.2",
|
|
"parseurl": "~1.3.2",
|
|
"path-to-regexp": "0.1.7",
|
|
"setprototypeof": "1.1.0",
|
|
"utils-merge": "1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"after": "0.8.2",
|
|
"eslint": "3.19.0",
|
|
"eslint-plugin-markdown": "1.0.0-beta.6",
|
|
"finalhandler": "1.0.6",
|
|
"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": {
|
|
"lint": "eslint --plugin markdown --ext js,md .",
|
|
"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/"
|
|
}
|
|
}
|