-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@hailbytes/asm-scope-parser",
"version": "1.0.1",
"description": "Parses and normalizes attack surface scope definitions: IP ranges, CIDR, domains, wildcards, and exclusions. Framework-agnostic, zero-dependency.",
"type": "module",
"license": "MIT",
"author": "HailBytes, LLC",
"keywords": [
"attack-surface-management",
"asm",
"cidr",
"ip-parsing",
"domain-parsing",
"scope",
"pentest",
"bug-bounty",
"security-tools",
"hailbytes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HailBytes/asm-scope-parser.git"
},
"bugs": {
"url": "https://github.com/HailBytes/asm-scope-parser/issues"
},
"homepage": "https://hailbytes.com",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}