-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.56 KB
/
package.json
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
{
"name": "bright-github-actions",
"version": "1.0.0",
"description": "Bright Security GitHub Actions",
"private": true,
"workspaces": [
"run-scan",
"stop-scan",
"run-discovery",
"stop-discovery",
"wait-for",
"wait-for-discovery",
"list-entrypoints"
],
"scripts": {
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format-check": "prettier --check \"**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"prepare": "husky",
"build": "npm run build --workspaces --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/bright-github-actions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NeuraLegion/bright-github-actions/issues"
},
"homepage": "https://github.com/NeuraLegion/bright-github-actions#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}