-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.75 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.75 KB
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
105
106
107
108
109
110
111
112
{
"name": "labyrinth-nsg",
"version": "0.0.9",
"description": "Network security analysis tools",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"author": "Michael Hopcroft",
"license": "MIT",
"keywords": [
"network",
"security",
"flow",
"graph",
"analysis",
"analyzer",
"router",
"firewall",
"formal",
"verification",
"azure",
"nsg"
],
"bin": {
"labyrinth": "build/src/apps/labyrinth.js"
},
"repository": "https://github.com/MikeHopcroft/labyrinth",
"scripts": {
"docs": "node node_modules/prepress/build/src/apps/prepress.js documentation/src documentation",
"convert": "node build/src/apps/convert.js ./data/azure/graph-ilb-plb-overlapping-vnet.json ./build/convert.yaml > ./build/convert.txt",
"graph": "node build/src/apps/graph.js ./build/convert.yaml -f Internet -r -b -v > ./build/graph.txt",
"test": "mocha",
"test-coverage": "nyc mocha --config .mocharc-ts.json",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"pretest-coverage": "npm run compile",
"postdebug": "npm run convert",
"posttest": "npm run lint",
"watch": "npm-watch test",
"watch:compile": "npm-watch compile"
},
"watch": {
"compile": {
"patterns": [
"src",
"test"
],
"extensions": "*.ts",
"ignore": [
"build",
"node_modules"
],
"verbose": true
},
"test": {
"patterns": [
"src",
"test"
],
"extensions": "*.ts",
"ignore": [
"build",
"node_modules"
],
"verbose": true
}
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/command-line-usage": "^5.0.1",
"@types/download": "^6.2.4",
"@types/ip": "^1.1.0",
"@types/js-yaml": "^3.12.5",
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.0.3",
"@types/node": "^15.0.1",
"@types/seedrandom": "^2.4.28",
"@types/tiny-async-pool": "^1.0.0",
"chai": "^4.2.0",
"gts": "^3.0.2",
"mocha": "^8.2.1",
"npm-watch": "^0.9.0",
"nyc": "^15.1.0",
"prepress": "0.0.4",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"dependencies": {
"command-line-usage": "^6.1.1",
"compare-versions": "^3.6.0",
"csv-parse": "^4.14.1",
"download": "^8.0.0",
"drange": "^2.0.1",
"fast-csv": "^4.3.5",
"fastpriorityqueue": "^0.6.3",
"fp-ts": "^2.8.5",
"io-ts": "^2.2.12",
"ip": "^1.1.5",
"js-yaml": "^3.14.0",
"minimist": "^1.2.5",
"seedrandom": "^3.0.5",
"tiny-async-pool": "^1.2.0",
"yaml": "^1.10.0"
}
}