-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.49 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.49 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
{
"name": "@mareel/core",
"description": "Zero-dependent network management solution.",
"license": "GPL-3.0",
"version": "0.4.27",
"files": [
"dist",
"ciscocfg",
"mibjson"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Mareel Team",
"email": "dev@mareel.io",
"url": "https://www.mareel.io"
},
"keywords": [
"mareel"
],
"repository": {
"url": "git://github.com/Mareel-io/core.git"
},
"scripts": {
"build": "make -C src/grammar && node_modules/.bin/tsc",
"lint": "eslint ./src/",
"test": "./ciscocfg/prepare.sh && yarn lint && ts-mocha 'test/**/*.ts'",
"integration-test": "ts-mocha 'test-integration/**/*.ts' --timeout 60000",
"clean": "rm -rf ./dist",
"doc": "typedoc",
"postinstall": "./ciscocfg/prepare.sh || true",
"start": "node ./dist/index.js"
},
"bin": {
"connectord": "./cli/connectord.js"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/chai-as-promised": "^7.1.4",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/msgpack-lite": "^0.1.7",
"@types/stream-json": "^1.7.0",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.15.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-tsdoc": "^0.2.10",
"mocha": "^9.1.2",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.12",
"typescript": "^4.1.2"
},
"optionalDependencies": {},
"dependencies": {
"@types/jsdom": "^16.2.5",
"@types/nearley": "^2.11.1",
"@types/qs": "^6.9.5",
"@types/ramda": "^0.27.46",
"@types/winston-syslog": "^2.0.4",
"arg": "^5.0.0",
"axios": "^0.21.3",
"express": "^4.17.1",
"form-data": "^4.0.0",
"hexy": "^0.3.1",
"ipaddr.js": "^2.0.1",
"jsdom": "^16.4.0",
"moment": "^2.29.1",
"msgpack-lite": "^0.1.26",
"nearley": "^2.20.1",
"net-snmp": "^3.5.6",
"node-ssh": "^12.0.0",
"oui": "^11.0.46",
"qs": "^6.9.4",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"ssh2": "^1.5.0",
"stream-json": "^1.7.1",
"tftp": "https://github.com/Mareel-io/node-tftp.git#staging",
"ts-custom-error": "^3.2.0",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-syslog": "^2.4.4",
"ws": "^7.4.6",
"yaml": "^1.10.2"
}
}