-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.95 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
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
{
"name": "expediate",
"version": "1.0.5",
"description": "Web framework to create complete HTTP server.",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"docs/",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"keywords": [
"server",
"web",
"http",
"https",
"rest",
"restful",
"router",
"app",
"api",
"git",
"jwt",
"json"
],
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true,force:true})\"",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "node scripts/build-cjs.cjs",
"test": "node --import tsx --test 'tests/*.test.ts'",
"test:coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-exclude='tests/**' 'tests/*.test.ts'",
"fuzz": "node --import tsx --test 'tests/*.fuzz.test.ts'",
"bench": "npm run bench --workspace benchmarks",
"bench:check": "npm run bench:check --workspace benchmarks",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run lint && npm run test && npm run build && npm pack --dry-run"
},
"workspaces": [
"benchmarks",
"loadtest"
],
"homepage": "https://expediate.axfab.net/",
"repository": {
"type": "git",
"url": "git+https://github.com/AxFab/expediate.git"
},
"author": "Fabien Bavent <fabien.bavent@gmail.com>",
"contributors": [],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.4",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"fast-check": "^3.23.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.1"
},
"engines": {
"node": ">=18.20.0"
}
}