-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "hosts-utilities",
"version": "0.1.0",
"description": "Utilities for the hosts file",
"type": "module",
"main": "src/index.mjs",
"types": "./types/index.d.ts",
"sideEffects": false,
"scripts": {
"test-full": "sh ./scripts/test-full.sh",
"test-lite": "mocha --recursive test/cases",
"test": "pnpm test-lite",
"test-one": "mocha",
"markdown-toc": "sh ./scripts/markdown-toc.sh",
"check-markdown-links": "markdown-link-check ./*.md ./docs/**/*.md",
"coverage": "c8 --all pnpm test-lite",
"coverage-check": "c8 --check-coverage --100 pnpm test-lite",
"prettier-check": "prettier --check --ignore-unknown .",
"validate": "sh ./scripts/validate.sh",
"prepack": "sh ./scripts/prepack.sh",
"postpack": "sh ./scripts/postpack.sh"
},
"bugs": {
"url": "https://github.com/olsonpm/hosts-utilities/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olsonpm/hosts-utilities.git"
},
"homepage": "https://github.com/olsonpm/hosts-utilities",
"files": [
"src",
"types"
],
"exports": {
".": {
"import": "./src/index.mjs",
"types": "./types/index.d.ts"
},
"./internals/*": null,
"./*": {
"import": "./src/*.mjs",
"types": "./types/*.d.ts"
}
},
"imports": {
"#src/*": "./src/*.mjs",
"#test/*": "./test/*.mjs"
},
"keywords": [
"hosts",
"hostile"
],
"author": "Phil Olson <philip.olson@pm.me>",
"license": "SEE LICENSE IN license.txt",
"packageManager": "pnpm@10.31.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@olsonpm/markdown-toc-gen": "1.2.0-personal2",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"chai-deep-match": "^1.2.1",
"dedent": "^1.7.2",
"eslint": "^10.2.0",
"eslint-plugin-import-x": "^4.16.2",
"fibble": "^1.2.3",
"globals": "^17.4.0",
"lean-package": "^1.5.0",
"markdown-link-check": "^3.14.2",
"mocha": "^11.7.5",
"monocart-coverage-reports": "^2.12.9",
"nve": "^18.0.3",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": [
"**/*.jsonc"
],
"options": {
"trailingComma": "none"
}
}
]
},
"engines": {
"node": ">=20.6.0"
},
"mocha": {
"node-option": [
"experimental-import-meta-resolve",
"import=fibble/register"
],
"require": "test/init.mjs"
},
"c8": {
"include": [
"src/**/*.mjs"
],
"exclude": [
"src/hosts-path.mjs",
"src/internals/fp-utils.mjs",
"src/internals/utils.mjs"
],
"experimental-monocart": true
},
"dependencies": {
"zod": "^4.3.6"
}
}