-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
36 lines (36 loc) · 871 Bytes
/
package.json
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
35
36
{
"name": "fs-router",
"version": "0.5.0",
"description": "Tiny router using the fs as paths",
"main": "index.js",
"scripts": {
"test": "tape test/**/*-test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lcov": "nyc npm test && nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesseditson/fs-router.git"
},
"keywords": [
"router",
"micro",
"match",
"route",
"request",
"api",
"rest"
],
"author": "Jesse Ditson <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jesseditson/fs-router/issues"
},
"homepage": "https://github.com/jesseditson/fs-router#readme",
"devDependencies": {
"@types/micro": "^7.3.1",
"coveralls": "^3.0.6",
"nyc": "^14.1.1",
"tape": "^4.6.3"
}
}