-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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
{
"name": "@eliware/path",
"type": "module",
"version": "2.4.0",
"description": "Import-meta-based path utilities for modern Node.js ESM applications.",
"main": "index.mjs",
"engines": {
"node": ">=26"
},
"types": "index.d.ts",
"files": [
"index.mjs",
"src",
"index.d.ts",
"README.md",
"LICENSE",
"RELEASE_NOTES.md",
"examples"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs"
}
},
"scripts": {
"test": "eliware-test",
"lint": "eliware-test --lint",
"typecheck": "tsc --project tsconfig.json",
"pack": "npm pack --dry-run"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.mjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/path.git"
},
"keywords": [
"path",
"paths",
"esm",
"jest",
"utilities",
"utils",
"nodejs",
"module",
"resolver",
"filepath",
"import",
"testing",
"resolve",
"relative",
"file-url",
"file-url-to-path",
"import-meta"
],
"author": "Eli Sterling <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/path/issues"
},
"homepage": "https://github.com/eliware/path#readme",
"devDependencies": {
"@eliware/test": "^2.4.0",
"typescript": "^7.0.2"
}
}