-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "@leichtgewicht/network-interfaces",
"version": "1.0.3",
"description": "Observing network interfaces and changes to them.",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:unit": "tap test.js",
"test:ci": "npm run test:lint && npm run test:unit -- --cov --coverage-report=lcov",
"release": "standard-version"
},
"bin": {
"network-interfaces": "./bin/network-interfaces"
},
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.9.2",
"standard": "^14.3.3",
"standard-version": "^7.1.0",
"tap": "^14.10.7"
},
"dependencies": {
"bgbash": "^1.0.0",
"fast-deep-equal": "^3.1.1",
"has-listener": "^1.1.1",
"object-hash": "^2.0.3",
"wmic": "^0.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/network-interfaces.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/martinheidegger/network-interfaces/issues"
},
"homepage": "https://github.com/martinheidegger/network-interfaces#readme"
}