-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@ffz/api-router",
"version": "1.5.0",
"description": "A fast router middleware for Koa with support for nesting, associating data with routes, and dynamically assigning middleware based on that data.",
"license": "MIT",
"main": "lib/router.js",
"homepage": "https://frankerfacez.github.io/api-router/",
"repository": {
"type": "git",
"url": "git://github.com/frankerfacez/api-router.git"
},
"bugs": {
"url": "https://github.com/frankerfacez/api-router/issues"
},
"files": [
"lib/**/*.js"
],
"author": "SirStendec <sir@stendec.me>",
"keywords": [
"koa",
"middleware",
"router",
"route"
],
"scripts": {
"eslint": "eslint --fix \"lib/**/*.js\"",
"test": "cross-env NODE_ENV=test nyc mocha --",
"test-bare": "cross-env NODE_ENV=test mocha",
"test-watch": "cross-env NODE_ENV=test nodemon node_modules/mocha/bin/mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "rimraf docs && jsdoc -c jsdoc.json"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"docdash": "^1.0.0",
"eslint": "^6.7.2",
"eslint-plugin-mocha": "^6.2.2",
"jsdoc": "^3.6.3",
"koa": "^2.11.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"find-my-way": "^2.2.1",
"methods": "^1.1.2",
"path-to-regexp": "^3.2.0",
"reusify": "^1.0.4"
},
"engines": {
"node": ">= 8"
}
}