-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "js-controller",
"version": "0.3.6",
"description": "Use controllers to handle http requests",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"type": "commonjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsc -w --pretty",
"build": "rm -rfv ./dist && tsc --pretty --sourceMap false",
"pub": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joye61/js-controller.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"controller",
"koa",
"http",
"mvc"
],
"author": "Joye",
"license": "MIT",
"bugs": {
"url": "https://github.com/joye61/js-controller/issues"
},
"homepage": "https://github.com/joye61/js-controller#readme",
"dependencies": {
"koa": "^2.14.1",
"koa-body": "^5.0.0",
"mongodb": "^5.1.0",
"mysql2": "^3.2.4",
"readdirp": "^3.6.0"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/node": "^18.15.5",
"typescript": "^4.9.4"
}
}