-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.13 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "snmp-agent-simulator",
"type": "module",
"version": "1.0.0",
"description": "snmp agent simulator for simulate number of snmp devices on network",
"main": "/core/app.js",
"scripts": {
"lint": "eslint .",
"start": "nodemon --no-warnings --experimental-modules --es-module-specifier-resolution=node ./core/app.js",
"test": "mocha ./tests/client.js"
},
"repository": {
"type": "git",
"url": "metinogurlu"
},
"keywords": [
"snmp, snmp agent, simulator, snmp device"
],
"author": "metinogurlu",
"license": "ISC",
"dependencies": {
"bl": "^4.0.3",
"body-parser": "^1.19.0",
"docker-host-ip": "^1.0.1",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"mongoose": "^5.8.7",
"nodemon": "^2.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^6.2.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "1000",
"env": {
"NODE_ENV": "development",
"PORT": 34380
}
}
}