-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 840 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 840 Bytes
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": "lan-heartbeat",
"version": "1.0.0",
"description": "Tool that checks the local network of a given host",
"main": "dist/src/lan-discovery.js",
"scripts": {
"start": "npm run build && node . serve",
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "Joel Milligan (joeldevelops)",
"license": "ISC",
"dependencies": {
"arpjs": "^1.2.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.3.0",
"ping": "^0.4.1",
"typescript": "^4.4.4",
"winston": "^3.3.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@types/yargs": "^17.0.4",
"ts-jest": "^27.0.7"
}
}