-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "@drunkcod/express-kit",
"type": "module",
"version": "0.0.22",
"description": "Express4 utility things",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"!lib/**/*.spec.*"
],
"exports": {
".": {
"import": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
}
}
},
"scripts": {
"clean": "rimraf lib",
"compile": "tsc",
"cjs:compile": "tsc --module commonjs --outdir lib/cjs",
"cjs:fixup": "echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
"test": "node --experimental-vm-modules --disable-warning=ExperimentalWarning node_modules/jest/bin/jest.js",
"test:all": "npm-run-all \"test --workspaces --include-workspace-root\" --silent",
"build": "npm-run-all clean -p compile cjs:compile -s cjs:fixup --silent",
"build:all": "npm-run-all \"build --workspaces --include-workspace-root\" --silent"
},
"keywords": [
"express"
],
"author": "Tobbe Gyllebring <tobbe@drunkcod.com>",
"license": "MIT",
"engines": {
"node": ">=22.10.0"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@drunkcod/argis": "^0.0.15",
"@drunkcod/express-async": "^0.0.18"
},
"devDependencies": {
"@drunkcod/ts-jest-esm": "^0.0.3",
"@jest/globals": "^30.2.0",
"@types/node": "^24.11.0",
"jest": "^30.2.0",
"jest-util": "^30.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}