-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 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
45
46
47
{
"name": "scalpel-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xkilldash9x/scalpel-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/xkilldash9x/scalpel-cli/issues"
},
"homepage": "https://github.com/xkilldash9x/scalpel-cli#readme",
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"babel-jest": "^30.2.0",
"esbuild": "^0.27.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0"
},
"jest": {
"testEnvironment": "jsdom",
"testEnvironmentOptions": {},
"collectCoverageFrom": [
"internal/analysis/active/taint/taint_shim.js",
"internal/browser/humanoid/scrolling.js",
"internal/agent/js_scripts/captcha_detection.js",
"internal/agent/js_scripts/form_analysis.js",
"internal/agent/js_scripts/verification_error.js",
"internal/agent/js_scripts/verification_success.js"
],
"transform": {
"internal/analysis/active/taint/taint_shim\\.js$": "<rootDir>/jest-go-transform.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/internal/browser/stealth/evasions.test.js"
]
}
}