-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "@eliware/common",
"type": "module",
"version": "1.1.8",
"description": "An ESM/Jest/Node-friendly utility for resolving file and directory paths, logging, error handling, and signal handling in both ESM environments.",
"types": "index.d.ts",
"files": [
"index.mjs",
"src",
"index.d.ts",
"README.md",
"LICENSE",
"examples"
],
"exports": {
".": {
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"scripts": {
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent --coverage --coverageProvider=v8",
"test:gaps": "npm test 2>&1 | grep '|' | grep -vF '| 100 | 100 | 100 | 100 |'",
"lint": "npx oxlint .",
"typecheck": "tsc --project tsconfig.json",
"pack": "npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/common.git"
},
"keywords": [
"nodejs",
"common utilities",
"logging",
"path utilities",
"error handling",
"signal handling",
"esm",
"typescript"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/common/issues"
},
"homepage": "https://github.com/eliware/common#readme",
"devDependencies": {
"jest": "^30.4.2",
"typescript": "^7.0.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).mjs"
]
},
"dependencies": {
"@eliware/errors": "^1.1.9",
"@eliware/log": "^1.1.12",
"@eliware/path": "^1.1.8",
"@eliware/signals": "^1.1.7"
}
}