You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
3 years ago
|
{
|
||
|
"name": "find-my-way",
|
||
|
"version": "4.5.1",
|
||
|
"description": "Crazy fast http radix based router",
|
||
|
"main": "index.js",
|
||
|
"types": "index.d.ts",
|
||
|
"scripts": {
|
||
|
"bench": "node bench.js",
|
||
|
"test:lint": "standard",
|
||
|
"test:typescript": "tsd",
|
||
|
"test": "standard && tap -J test/*.test.js && npm run test:typescript",
|
||
|
"test:report": "tap -J test/*.test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap",
|
||
|
"test:reporter": "tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/delvedor/find-my-way.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"http",
|
||
|
"router",
|
||
|
"radix",
|
||
|
"fast",
|
||
|
"speed"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=10"
|
||
|
},
|
||
|
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/delvedor/find-my-way/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/delvedor/find-my-way#readme",
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^14.0.27",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"pre-commit": "^1.2.2",
|
||
|
"request": "^2.88.2",
|
||
|
"standard": "^14.3.4",
|
||
|
"tap": "^15.0.9",
|
||
|
"tap-mocha-reporter": "^5.0.1",
|
||
|
"tsd": "^0.13.1"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"fast-decode-uri-component": "^1.0.1",
|
||
|
"fast-deep-equal": "^3.1.3",
|
||
|
"safe-regex2": "^2.0.0",
|
||
|
"semver-store": "^0.3.0"
|
||
|
},
|
||
|
"tsd": {
|
||
|
"directory": "test/types"
|
||
|
}
|
||
|
}
|