-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.79 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.79 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
{
"name": "scada-topology-discovery",
"version": "1.0.0",
"description": "Secure Automatic Network Topology Creation for SCADA/ICS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"collector:start": "ts-node src/collectors/collector-manager.ts",
"deploy:lambda": "scripts/deploy-lambda.sh",
"migrate": "scripts/run-migrations.sh",
"grafana:start": "docker-compose -f grafana/docker-compose.yml up -d",
"simulate": "ts-node src/simulator/index.ts",
"simulate:generate": "ts-node src/simulator/data-generator.ts",
"simulate:ingest": "ts-node src/simulator/mqtt-ingest.ts",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --config jest.integration.config.js",
"test:integration:collectors": "jest --config jest.integration.config.js --testPathPattern=collectors",
"test:integration:database": "jest --config jest.integration.config.js --testPathPattern=database",
"test:integration:lambda": "jest --config jest.integration.config.js --testPathPattern=lambda",
"test:integration:websocket": "jest --config jest.integration.config.js --testPathPattern=websocket",
"test:integration:e2e": "jest --config jest.integration.config.js --testPathPattern=e2e",
"test:security": "jest --testPathPattern=tests/security",
"test:coverage": "jest --coverage",
"test:all": "npm run test && npm run test:integration && npm run test:security",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"keywords": [
"scada",
"ics",
"ot-security",
"network-topology",
"industrial-control",
"snmpv3",
"mqtt",
"aws-iot"
],
"author": "",
"license": "MIT",
"dependencies": {
"aws-iot-device-sdk-v2": "^1.19.0",
"aws-sdk": "^2.1512.0",
"dotenv": "^16.3.1",
"mqtt": "^5.3.0",
"net-snmp": "^3.11.2",
"pg": "^8.11.3",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"ws": "^8.19.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.160",
"@types/jest": "^29.5.11",
"@types/node": "^20.19.32",
"@types/pg": "^8.10.9",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"modbus-serial": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}