-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@hatsy/hatsy",
"version": "3.0.0",
"description": "Asynchronous TypeScript-friendly HTTP server for Node.js",
"keywords": [
"http-framework",
"http-server",
"request-handler",
"web-server"
],
"homepage": "https://github.com/hatsyjs/hatsy",
"repository": {
"type": "git",
"url": "ssh://git@github.com:hatsyjs/hatsy.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/hatsyjs/hatsy/issues"
},
"type": "module",
"types": "./dist/hatsy.d.ts",
"typesVersions": {
"*": {
"core.js": [
"./dist/hatsy.core.d.ts"
],
"testing.js": [
"./dist/hatsy.testing.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/hatsy.d.ts",
"default": "./dist/hatsy.js"
},
"./core.js": {
"types": "./dist/hatsy.core.d.ts",
"default": "./dist/hatsy.core.js"
},
"./package.json": "./package.json",
"./testing.js": {
"types": "./dist/hatsy.testing.d.ts",
"default": "./dist/hatsy.testing.js"
}
},
"sideEffects": false,
"dependencies": {
"@proc7ts/logger": "^2.0.0",
"@proc7ts/primitives": "^4.0.0",
"httongue": "^3.1.0",
"http-header-value": "^4.0.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@run-z/eslint-config": "^5.0.0",
"@run-z/prettier-config": "^3.0.0",
"@run-z/project-config": "^0.20.4",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/node": "^20.16.11",
"eslint": "^9.12.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"run-z": "^2.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typedoc": "^0.26.8",
"typescript": "~5.6.3"
},
"scripts": {
"all": "run-z build,lint,test",
"build": "run-z +z --then build-z",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
"format": "run-z +z --then prettier --write \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint,+cmd:test-z"
}
}