-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 725 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 725 Bytes
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
{
"name": "jshookscript",
"version": "1.0.0",
"description": "A curated collection of browser-side JavaScript hooking snippets for reverse engineering, security research, and dynamic analysis.",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix"
},
"keywords": [
"javascript",
"hook",
"reverse-engineering",
"browser",
"debugging"
],
"author": "Payne",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.0.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"vitest": "^4.1.8"
}
}