-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "github-restful-middleware",
"version": "1.0.0-rc.1",
"description": "Express & Koa compatible middleware for GitHub RESTful API",
"keywords": [
"Express",
"Koa",
"Middleware",
"GitHub",
"RESTful",
"API"
],
"license": "LGPL-3.0-or-later",
"author": "[email protected]",
"homepage": "https://idea2app.github.io/GitHub-RESTful-middleware/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/GitHub-RESTful-middleware.git"
},
"bugs": {
"url": "https://github.com/idea2app/GitHub-RESTful-middleware/issues"
},
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=20"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/koa": "^2.15.0",
"better-sse": "^0.13.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"diff2html": "^3.4.48",
"iterable-observer": "^1.1.0",
"koajax": "^3.0.0",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.10.4",
"routing-controllers-openapi": "^4.0.0",
"tslib": "^2.7.0"
},
"scripts": {
"prepare": "husky",
"docs": "typedoc core/",
"build": "rm -rf dist/ docs/ && tsc && npm run docs",
"start": "npm run docs && npx serve docs/",
"test": "lint-staged && tsx --env-file=.env --test test/*.spec.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@octokit/openapi-types": "^22.2.0",
"@tsconfig/node18": "^18.2.4",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.16.3",
"eventsource": "^2.0.2",
"husky": "^9.1.5",
"koa": "^2.15.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,js,ts}": "prettier --write"
}
}