-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
{
"name": "ziron-server",
"version": "9.9.1",
"description": "Ziron server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "UNLICENSED",
"files": [
"dist/**/*",
"!.DS_Store"
],
"repository": {
"type": "git",
"url": "https://github.com/ZironServer/ziron-server.git"
},
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"dependencies": {
"base64id": "2.0.0",
"uniqid": "^5.4.0",
"emitix": "^2.2.0",
"@types/jsonwebtoken": "^9.0.1",
"jsonwebtoken": "^9.0.0",
"ziron-ws": "20.22.0",
"ziron-errors": "1.5.0",
"ziron-events": "1.5.0",
"ziron-engine": "2.4.0",
"@types/node": "^13.7.6",
"is-ip": "^3.1.0",
"docker-secret": "^1.2.4"
},
"devDependencies": {
"typescript": "^3.7.5",
"gulp": "4.0.2",
"gulp-optimize-js": "1.1.0",
"gulp-terser": "1.2.0",
"gulp-typescript": "^5.0.1",
"del": "^5.1.0",
"ts-node": "^8.0.3",
"mocha": "7.0.1",
"@types/mocha": "^7.0.2",
"@types/uniqid": "^5.3.2"
},
"overrides": {
"gulp-typescript": {
"source-map": "0.7.4"
}
},
"scripts": {
"build": "gulp build",
"prepublishOnly": "npm run build",
"test": "mocha --exit -r ts-node/register test/**/*.ts"
},
"keywords": [
"websocket",
"realtime",
"ziron",
"fast",
"lightweight"
]
}