-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "telnet-generator",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -d",
"clean": "rimraf dist",
"test": "jasmine --config=jasmine.json",
"example:server:echo": "ts-node examples/server/echo",
"example:server:daytime": "ts-node examples/server/daytime",
"example:server:chargen": "ts-node examples/server/chargen",
"example:client:daytime": "ts-node examples/client/daytime",
"example:client:http": "ts-node examples/client/http",
"example:client:https": "ts-node examples/client/https"
},
"keywords": [
"telnet",
"generator"
],
"author": "",
"license": "Apache 2.0",
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.40",
"jasmine": "^4.2.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "[email protected]:herrevilkitten/telnet-generator.git"
},
"bugs": {
"url": "https://github.com/herrevilkitten/telnet-generator/issues"
}
}