-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "@macchiatojs/wrap-koa-compose",
"version": "0.1.0",
"description": "The modern Koa-Style middleware composition helper for `koa-compose`.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint:all": "eslint . --ext .ts",
"lint": "eslint ./src --ext .ts",
"pretest": "rimraf dist",
"test": "mocha --recursive --exit",
"test:watch": "mocha --recursive --watch --exit",
"build": "tsc -d",
"precoverage": "rimraf coverage .nyc_output",
"coverage": "nyc npm run test",
"postcoverage": "npm run build",
"preci": "npm run lint",
"ci": "npm run coverage",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macchiatojs/wrap-koa-compose.git"
},
"keywords": [
"middleware",
"koaify",
"koa-style",
"koa-compose",
"wrap-koa-compose",
"compose",
"iterator"
],
"license": "MIT",
"author": {
"name": "imed jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com"
},
"peerDependencies": {
"koa-compose": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/koa-compose": "^3.2.5",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"koa-compose": "^4.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"engines": {
"node": ">= 14"
},
"bugs": {
"url": "https://github.com/macchiatojs/wrap-koa-compose/issues"
},
"homepage": "https://github.com/macchiatojs/wrap-koa-compose#readme"
}