-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "web-listener",
"version": "1.3.2",
"private": true,
"description": "a small server abstraction for creating API and resource endpoints with middleware",
"author": "David Evans",
"license": "MIT",
"keywords": [
"server",
"api",
"middleware",
"http",
"websocket",
"webserver",
"web-listener"
],
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"man": "./man1/web-listener.1.gz",
"sideEffects": false,
"bin": "./run.js",
"scripts": {
"format": "prettier --write .",
"test": "lean-test src --preprocess=tsc --parallel-suites && npm run -s test-docs && package/build.sh && package/run.sh && tsc && prettier --check .",
"test-docs": "! which mandoc >/dev/null || ( sed 's/__BUILD_DATE__/January 1, 2000/' < ./src/bin/man1/web-listener.1 | mandoc -T lint -W style && echo 'pass' )",
"test-performance": "performance/run.sh",
"cli": "./src/bin/run.mts",
"dopublish": "package/build.sh && npm publish package.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidje13/web-listener.git"
},
"bugs": {
"url": "https://github.com/davidje13/web-listener/issues"
},
"homepage": "https://github.com/davidje13/web-listener#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "16.x",
"@rollup/plugin-replace": "6.x",
"@rollup/plugin-terser": "1.x",
"@rollup/plugin-typescript": "12.x",
"@types/node": "24.x",
"@types/ws": "8.x",
"ajv": "8.x",
"ajv-formats": "3.x",
"eventsource": "4.x",
"lean-test": "2.x",
"prettier": "3.9.4",
"rollup": "4.x",
"rollup-plugin-dts": "6.x",
"typescript": "6.0.x",
"ws": "8.x"
}
}