-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.05 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "koa-mapper",
"version": "1.0.0",
"description": "A better and smart router middleware for koa.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js src test",
"build": "rimraf lib && babel src --out-dir lib",
"prepare": "npm run build",
"test": "NODE_ENV=test nyc mocha --no-timeouts",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"start": "npm run build && node examples/index.js"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/koa-mapper.git"
},
"keywords": [
"koa",
"router",
"route",
"json-schema",
"openapi",
"mapper",
"swagger"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/koa-mapper/issues"
},
"homepage": "https://github.com/d-band/koa-mapper#readme",
"engines": {
"node": ">= 8"
},
"dependencies": {
"ajv": "^6.10.2",
"debug": "^4.1.1",
"extend": "^3.0.2",
"http-errors": "^1.7.3",
"koa-body": "^4.1.1",
"koa-compose": "^4.1.0",
"methods": "^1.1.2",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"path-to-regexp": "^6.1.0",
"qs": "^6.9.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"koa": "^2.11.0",
"koa-logger": "^3.2.1",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0",
"supertest": "^4.0.2"
}
}