-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "hera-chrome-extension",
"version": "1.0.0",
"description": "Hera - Security testing extension for authentication flows",
"type": "module",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"lint:modules": "eslint modules --ext .js",
"lint:background": "eslint background.js modules/background --ext .js",
"lint:content": "eslint content-script.js modules/content --ext .js",
"lint:popup": "eslint popup.js modules/ui --ext .js",
"lint:watch": "nodemon --watch . --ext js --exec 'npm run lint'",
"validate": "node scripts/validate-extension.js",
"check": "npm run lint && npm run validate",
"preload": "npm run check",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:all": "npm run check && npm run test:coverage",
"prepare": "husky"
},
"keywords": [
"chrome-extension",
"security",
"oauth",
"authentication",
"security-testing"
],
"author": "Code Monkey Cybersecurity",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"ae-cvss-calculator": "^1.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.7",
"@vitest/ui": "^4.0.7",
"eslint": "^8.57.0",
"happy-dom": "^20.0.10",
"husky": "^9.1.7",
"jsdom": "^27.1.0",
"lint-staged": "^16.2.6",
"nodemon": "^3.0.2",
"vitest": "^4.0.7"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"vitest related --run"
]
}
}