-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.45 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
45
46
47
48
49
50
{
"name": "vendorprint",
"version": "0.3.0",
"private": false,
"type": "module",
"description": "A careful, evidence-first CLI for discovering company technology signals in public DNS.",
"keywords": [
"dns",
"technographics",
"vendor-detection",
"sales-intelligence",
"cli"
],
"homepage": "https://vendorprint.vercel.app",
"bugs": {
"url": "https://github.com/danahmadi/vendorprint_cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danahmadi/vendorprint_cli.git"
},
"bin": {
"vendorprint": "bin/vendorprint.mjs"
},
"exports": {
".": "./src/index.mjs"
},
"scripts": {
"scan": "node ./bin/vendorprint.mjs",
"test": "node --test",
"check": "node --check ./bin/vendorprint.mjs && node --check ./src/index.mjs && node --check ./src/audit.mjs && node --check ./src/certificate-transparency.mjs && node --check ./src/domain.mjs && node --check ./src/fingerprint.mjs && node --check ./src/inference.mjs && node --check ./src/output.mjs && node --check ./src/profile.mjs && node --check ./src/scanner.mjs && node --check ./src/signals.mjs && node --check ./src/signature-registry.mjs",
"prepublishOnly": "npm run check && npm test"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"src",
"README.md",
"RESPONSIBLE_USE.md"
],
"license": "MIT",
"dependencies": {
"tldts": "^7.4.9"
}
}