-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.5 KB
/
package.json
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
{
"name": "hostlocal",
"version": "1.4.2",
"decription": "Serve files from a directory over HTTP/1.1 and HTTP/2, with live reload notifications over a websocket.",
"main": "lib/index.js",
"type": "module",
"keywords": [
"http",
"https",
"http2",
"server",
"config file",
"websocket",
"live-reload",
"localhost"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hildjj/hostlocal.git"
},
"homepage": "https://github.com/hildjj/hostlocal#readme",
"bugs": {
"url": "https://github.com/hildjj/hostlocal/issues"
},
"files": [
"assets",
"bin",
"lib"
],
"bin": {
"hostlocal": "./bin/hostlocal.js"
},
"scripts": {
"clean": "rimraf coverage docs lib playwright-report test-results",
"dev": "node bin/hostlocal.js -c .hostCoverage.js",
"lint": "eslint .",
"snaps": "UPDATE_SNAPSHOT=1 node --test test/*.test.js",
"spotcheck": "node --test test/*.test.js",
"precoverage": "tsc --inlineSourceMap",
"coverage": "npm run spotcheck && playwright test",
"poscoverage": "npm run ts",
"test": "c8 npm run coverage",
"docs": "typedoc",
"start": "node bin/hostlocal.js",
"ts": "tsc",
"build:noweb": "npm run docs && npm run ts && npm run spotcheck && npm run lint && npm pack --dry-run",
"build": "npm run docs && npm run test && npm run lint && npm pack --dry-run",
"version": "package-extract -so src/version.ts name version && git add src/version.ts"
},
"dependencies": {
"@cto.af/http-headers": "0.1.0",
"chokidar": "4.0.3",
"commander": "13.0.0",
"fast-glob": "3.3.2",
"jsrsasign": "11.1.0",
"markdown-it": "14.1.0",
"mime-types": "2.1.35",
"open": "10.1.0",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"ws": "8.18.0"
},
"devDependencies": {
"@cto.af/eslint-config": "5.1.4",
"@playwright/test": "1.49.1",
"@types/jsrsasign": "10.5.15",
"@types/markdown-it": "14.1.2",
"@types/mime-types": "2.1.4",
"@types/node": "22.10.5",
"@types/ws": "8.5.13",
"c8": "10.1.3",
"eslint": "9.17.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-markdown": "5.1.0",
"node-mocks-http": "1.16.2",
"package-extract": "2.3.0",
"rimraf": "6.0.1",
"snappy-snaps": "1.1.0",
"typedoc": "0.27.6",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": ">=18.8"
}
}