-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "snmp2mqtt",
"version": "0.2.4",
"license": "MIT",
"bin": {
"snmp2mqtt": "dist/index.js"
},
"author": "Daniel Chesterton",
"dependencies": {
"ajv": "^8.8.2",
"async-mqtt": "^2.6.1",
"better-ajv-errors": "^1.1.2",
"bigint-buffer": "^1.1.5",
"js-yaml": "^4.1.0",
"luxon": "^2.3.0",
"net-snmp": "^3.5.8",
"slugify": "^1.6.5"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/js-yaml": "^4.0.5",
"@types/luxon": "^2.0.8",
"@types/node": "^14.14.27",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"build": "rm -rf dist && tsc",
"start": "ts-node --files src/index.ts",
"prettier:write": "prettier src --write"
}
}