-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.29 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
{
"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": "npm run clean && tsc-watch --onSuccess \"node ./dist/src/server.js\"",
"test": "npm run clean && npm run build && mocha dist/test/**/*.test.js --exit",
"test-watch": "npm run clean && tsc-watch --onSuccess \"mocha dist/test/**/*.test.js\"",
"lint": "tslint -t verbose \"src/**/*.ts\" \"test/**/*.ts\"",
"dist": "npm 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 <[email protected]>",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/uhst/uhst-server-node/issues"
},
"homepage": "https://github.com/uhst/uhst-server-node#readme",
"dependencies": {
"@toverux/expresse": "^2.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"newrelic": "^7.3.0",
"node-fetch": "^2.6.1",
"randomatic": "^3.1.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/cors": "^2.8.7",
"@types/eventsource": "^1.1.3",
"@types/express": "^4.17.7",
"@types/express-jwt": "0.0.42",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@types/node-fetch": "^2.5.8",
"@types/pubsub-js": "^1.8.0",
"@types/randomatic": "^3.1.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"eventsource": "^1.0.7",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"semantic-release": "^17.1.1",
"supertest": "^4.0.2",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typedoc": "^0.20.25",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=5.0.0"
},
"release": {
"pkgRoot": "dist",
"assets": [
"dist/*.zip",
"dist/*.tar.gz"
]
}
}