-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 KB
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
{
"name": "@network-utils/vendor-lookup",
"version": "1.0.12",
"description": "Returns the IEEE registered vendor name from the MAC address, using an up-to-date database (with a script to update it automatically).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build_test": "tsc --project tsconfig.test.json",
"build_script": "tsc --project tsconfig.script.json",
"update": "npm run build_script && npm version patch && node build/script/UpdateVendorDatabase.js && npm run build",
"test": "npm run build_test && mocha --require ts-node/register ./build/test/test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfucci/vendor-lookup.git"
},
"keywords": [
"ieee",
"mac",
"vendor",
"lookup",
"oui"
],
"files": [
"dist/**/*"
],
"author": "Marco Fucci di Napoli <mfucci@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mfucci/vendor-lookup/issues"
},
"homepage": "https://github.com/mfucci/vendor-lookup#readme",
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"axios": "^1.6.8",
"csv-parse": "^5.0.4",
"mocha": "^11.0.1",
"preferences": "^2.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}