-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "web-route",
"version": "1.0.3",
"description": "Use Typescript annotations to load API routes and easily configure APIs",
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production tsc",
"prepublishOnly": "npm run build",
"test:server": "ts-node --files ./test/server.ts",
"test": "mocha ./test/mocha/index.js"
},
"author": "handong",
"license": "ISC",
"dependencies": {
"koa-router": "^10.1.1",
"co-body": "^6.1.0",
"copy-to": "^2.0.1",
"glob": "^7.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/node": "^16.10.3",
"axios": "^0.27.2",
"mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"koa": "^2.13.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IveHD/web-route.git"
},
"bugs": {
"url": "https://github.com/IveHD/web-route/issues"
},
"homepage": "https://github.com/IveHD/web-route#readme"
}