-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "@epiijs/server",
"version": "3.4.0",
"description": "A simple server framework.",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"main": "build/index.js",
"exports": "./build/index.js",
"scripts": {
"clean": "rm -rf build && rm -rf coverage",
"build": "npm run clean && eslint . && tsc",
"test": "npm run build && c8 --reporter=lcov mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiijs/server.git"
},
"keywords": [
"epiijs",
"server",
"web"
],
"author": "Sartrey Lee <sartrey@163.com> (https://sartrey.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiijs/server/issues"
},
"homepage": "https://github.com/epiijs/server#readme",
"devDependencies": {
"@epiijs/eslint-config": "^1.0.1",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.17.32",
"c8": "^10.1.3",
"eslint": "^9.25.1",
"mocha": "^11.1.0"
},
"dependencies": {
"@epiijs/config": "^0.7.0",
"@epiijs/httply": "^0.1.0",
"@epiijs/inject": "^0.8.0",
"find-my-way": "^9.3.0",
"glob": "^11.0.2",
"mime-types": "^2.1.35"
}
}