-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@holusion/product-scanner",
"version": "3.1.0",
"description": "MDNS network scanner for holusion products",
"public": true,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"start": "node lib/index.js",
"test": "mocha",
"watch": "npm test -- --watch --parallel --reporter min",
"coverage": "npx c8@latest npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Holusion/product-scanner.git"
},
"keywords": [
"mdns",
"bonjour",
"network",
"scan"
],
"author": "Sebastien DUMETZ <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Holusion/product-scanner/issues"
},
"mocha": {
"require": "./lib/__tests__/test-common.js",
"ui": "bdd",
"recursive": true,
"colors": true,
"reporter": "spec",
"check-leaks": true,
"spec": [
"lib/**/*.test.js"
]
},
"homepage": "https://github.com/Holusion/product-scanner#readme",
"engines": {
"node": ">=16.14"
},
"dependencies": {
"multicast-dns": "^7.2.5"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0"
},
"files": [
"lib/**/*.js",
"**/*.d.ts",
"!lib/**/*.test.js",
"!lib/__fixtures__/**",
"!lib/__tests__/**"
]
}