1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
"name": "trouter",
"version": "2.0.1",
"description": "🐟 A fast, small-but-mighty, familiar ~fish~ router",
"repository": "lukeed/trouter",
"license": "MIT",
"files": [
"index.js"
],
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "lukeed.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"bench": "node bench",
"test": "tape test/*.js | tap-spec"
},
"keywords": [
"route",
"router",
"routing"
],
"dependencies": {
"matchit": "^1.0.0"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}
|