-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "telnetlib",
"version": "1.0.2",
"description": "A simple Node.js telnet server/client library.",
"main": "src/telnetlib.js",
"scripts": {
"coverage": "nyc mocha",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"test": "mocha"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cadpnq/telnetlib.git"
},
"keywords": [
"telnet",
"MUD",
"GMCP",
"NAWS",
"MCCP"
],
"author": "Nicky Nickell <nicky.nickell@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cadpnq/telnetlib/issues"
},
"homepage": "https://github.com/cadpnq/telnetlib#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.9",
"@babel/preset-env": "^7.14.9",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2"
}
}