-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"name": "@axiosleo/koapp",
"version": "1.1.3",
"description": "",
"author": "AxiosLeo",
"bin": {
"koapp": "./bin/koapp.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AxiosLeo/node-koapp"
},
"scripts": {
"dev": "nodemon",
"lint": "tsc ./index.d.ts && eslint --fix src/",
"test": "mocha --reporter spec --timeout 3000 tests/*.tests.js",
"test-cov": "nyc -r=lcov -r=html -r=text -r=json mocha -t 10000 -R spec tests/*.tests.js",
"ci": "npm run lint && npm run test-cov",
"clear": "rm -rf ./.nyc_output ./coverage ./.uploads/ ./node_modules ./package-lock.json ./pnpm-lock.yaml"
},
"directories": {
"lib": "src"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@axiosleo/cli-tool": "^1.6.4",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-session": "^6.4.0",
"koa-static-server": "^1.5.2",
"multer": "^1.4.5-lts.1",
"uuid": "^9.0.1",
"validatorjs": "^3.22.1",
"ws": "^8.18.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@koa/multer": "^4.0.0",
"@types/koa__multer": "^2.0.7",
"@types/node": "^20.12.12",
"chai": "^4.3.7",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"typescript": "^5.4.5"
}
}