-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
104 lines (104 loc) · 2.2 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
98
99
100
101
102
103
104
{
"name": "telnet-client",
"description": "A simple node.js telnet client",
"author": {
"name": "Mario Kozjak",
"email": "[email protected]"
},
"version": "2.2.1",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engine": "node >= 6.9.1",
"license": "MIT",
"scripts": {
"prepack": "tsc",
"test": "nyc --reporter=html mocha --timeout 3000 --require ts-node/register test/**/*.ts",
"coveralls": "tsc && (nyc report --reporter=text-lcov | coveralls)",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'"
},
"dependencies": {
"net": "^1.0.2",
"stream": "^0.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"extend": "^3.0.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"telnet": "0.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "github:mkozjak/node-telnet-client.git"
},
"contributors": [
{
"name": "Petar Koretic",
"email": "[email protected]"
},
{
"name": "stardast"
},
{
"name": "ChristopherHackett"
},
{
"name": "EyePulp"
},
{
"name": "HaykoKoryun"
},
{
"name": "silverwind"
},
{
"name": "Peter Halliday",
"email": "[email protected]"
},
{
"name": "kaYcee"
},
{
"name": "bryanculver"
},
{
"name": "fbertone"
},
{
"name": "Shastel"
},
{
"name": "barak-shirali"
},
{
"name": "HaykoKoryun"
},
{
"name": "Ivan Sieder",
"email": "[email protected]"
},
{
"name": "Kerry Shetline",
"email": "[email protected]"
}
],
"funding": {
"type": "paypal",
"url": "https://paypal.me/kozjak"
}
}