-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.25 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
{
"name": "uhst-server",
"version": "0.0.0-development",
"description": "User Hosted Secure Transmission server for NodeJS",
"bin": {
"uhst": "./bin/uhst"
},
"directories": {
"test": "test"
},
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"start": "pnpm run clean && tsc-watch --onSuccess \"node ./dist/src/server.js\"",
"test": "pnpm run clean && pnpm run build && mocha dist/test/**/*.test.js --exit",
"test:coverage": "nyc mocha test/**/*.test.ts --require ts-node/register --exit",
"test-watch": "pnpm run clean && tsc-watch --onSuccess \"mocha dist/test/**/*.test.js\"",
"dist": "pnpm test && copyfiles bin/* package.json README.md LICENSE dist && typedoc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/uhst/uhst-server-node.git"
},
"keywords": [
"realtime",
"p2p",
"distributed",
"streaming",
"sse"
],
"author": "Stefan Dimitrov <stefan@dimitrov.li>",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/uhst/uhst-server-node/issues"
},
"homepage": "https://github.com/uhst/uhst-server-node#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.0",
"express-jwt": "^8.5.0",
"jsonwebtoken": "^9.0.0",
"newrelic": "^13.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.0",
"@types/mocha": "^10.0.0",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^21.0.0",
"@types/supertest": "^6.0.0",
"chai": "^4.5.0",
"copyfiles": "^2.4.0",
"eventsource": "^3.0.0",
"mocha": "^10.8.0",
"nock": "^14.0.11",
"nodemon": "^3.1.0",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"semantic-release": "^25.0.0",
"@semantic-release/npm": "^13.0.0",
"sinon": "^21.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.0",
"tsc-watch": "^6.2.0",
"typedoc": "^0.28.17",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.18.3",
"release": {
"pkgRoot": "dist",
"assets": [
"dist/*.zip",
"dist/*.tar.gz"
]
}
}