-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@epiijs/server",
"version": "3.3.2",
"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 && rm -rf .nyc_output",
"build": "npm run clean && eslint --ext .ts && tsc",
"test": "npm run build && nyc --reporter=lcov mocha test/index.js --exit",
"lcov": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiijs/server.git"
},
"keywords": [
"epiijs",
"server",
"web"
],
"author": "Sartrey Lee <[email protected]> (https://sartrey.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiijs/server/issues"
},
"homepage": "https://github.com/epiijs/server#readme",
"devDependencies": {
"@epiijs/eslint-config": "^0.1.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.11.16",
"eslint": "^8.56.0"
},
"dependencies": {
"@epiijs/config": "^0.5.0",
"@epiijs/inject": "^0.7.1",
"bl": "^6.0.10",
"find-my-way": "^8.1.0",
"glob": "^10.3.10",
"mime-types": "^2.1.35"
}
}