-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
97 lines (97 loc) · 2.76 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
90
91
92
93
94
95
96
97
{
"name": "iola",
"version": "1.0.0",
"description": "iola - a socket client with rest api",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json && tsc-alias",
"build:release": "rimraf dist && tsc -p tsconfig.release.json && tsc-alias -p tsconfig.release.json",
"bin": "rimraf bin && npm run build:release && ./bin.sh",
"release": "npm run build:release && npm publish",
"lib:check": "ncu",
"lib:upgrade": "ncu -u && npm install",
"test": "jest --config jest.json --runInBand",
"test:cov": "jest --config jest.json --runInBand --coverage",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"link": "npm run build:release && npm link",
"unlink": "npm unlink iola -g",
"ws": "ts-node ./test/server/main/ws.ts",
"io": "ts-node ./test/server/main/io.ts",
"tcp": "ts-node ./test/server/main/tcp.ts",
"unix": "ts-node ./test/server/main/unix.ts"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvarentsov/iola.git"
},
"keywords": [
"iola",
"socket-client",
"websocket-client",
"socketio-client",
"socket.io-client",
"tcp-client",
"unix-socket-client"
],
"author": "Pavel Varentsov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pvarentsov/iola/issues"
},
"homepage": "https://github.com/pvarentsov/iola#readme",
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "28.1.4",
"@types/node": "18.0.3",
"@types/supertest": "2.0.12",
"@types/validator": "13.7.4",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"jest": "28.1.2",
"jest-junit": "14.0.0",
"jest-sonar-reporter": "2.0.0",
"module-alias": "2.2.2",
"npm-check-updates": "15.2.6",
"pkg": "5.8.0",
"rimraf": "3.0.2",
"socket.io": "4.5.1",
"supertest": "6.2.4",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tsc-alias": "1.6.11",
"typescript": "4.7.4"
},
"dependencies": {
"@nestjs/common": "9.0.1",
"@nestjs/core": "9.0.1",
"@nestjs/platform-express": "9.0.1",
"@nestjs/swagger": "6.0.1",
"chalk": "4.1.2",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"commander": "9.3.0",
"moment": "2.29.4",
"ora": "5.4.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"socket.io-client": "4.5.1",
"swagger-ui-express": "4.4.0",
"ws": "8.8.0"
},
"_moduleAliases": {
"@iola/core": "src/core",
"@iola/api": "src/api",
"@iola/test": "test"
}
}