-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 Bytes
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
{
"name": "net-parser",
"version": "0.1.0",
"description": "A parser for converting .et1/.fdb network test files to JSON",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"net-parser": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"start": "node dist/cli.js",
"prepublishOnly": "bun run build"
},
"keywords": [
"parser",
"network",
"education",
"test",
"converter"
],
"author": "worthant",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"commander": "^12.0.0",
"iconv-lite": "^0.6.3",
"md-to-pdf": "^5.2.4"
}
}