forked from douhjs/douh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "douh",
"version": "0.0.2-beta.2",
"description": "node.js http based framework",
"author": "changchanghwnag",
"homepage": "https://github.com/changchanghwang/douh#readme",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc && tsc-alias",
"build:cjs": "tsc --module commonjs --outDir dist/cjs && tsc-alias --outDir dist/cjs"
},
"main": "./dist/cjs/index.js",
"types": "./dist/index.d.ts",
"esm": "./dist/index.js",
"license": "MIT",
"dependencies": {
"on-finished": "^2.4.1"
},
"devDependencies": {
"@types/on-finished": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/changchanghwang/douh/issues"
},
"keywords": [
"node.js",
"node",
"http",
"framework",
"web"
],
"files": [
"dist",
"src/**/*.ts",
"LICENSE",
"README.md"
]
}