-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.67 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
62
63
64
65
66
67
68
69
{
"name": "moj-actions",
"version": "1.6.0",
"description": "A collection of reusable GitHub Actions that standardise DevSecOps security scanning i.e. SCA, SAST, DAST, secrets, IaC, and container security.",
"keywords": [
"moj",
"devsecops",
"actions"
],
"homepage": "https://github.com/ministryofjustice/devsecops-actions#readme",
"bugs": {
"url": "https://github.com/ministryofjustice/devsecops-actions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ministryofjustice/devsecops-actions.git"
},
"license": "MIT",
"author": "Abhi Markan",
"scripts": {
"build": "npx tsc --project ncc.tsconfig.json && npx ncc build dist/index.js -o dist --minify --source-map --no-cache",
"housekeeping": "npm audit && npm run validate:all && npx sort-package-json",
"install:safechain": "bash src/scripts/safechain.sh",
"install:syft": "bash src/scripts/syft.sh",
"lint:ts": "npx eslint --color --cache --max-warnings 0 ./src",
"lint:ts:fix": "npx eslint --fix --color --cache --max-warnings 0 .",
"scan": "node dist/index.js",
"scan:dev": "npx ts-node src/index.ts",
"spellcheck": "cspell lint --gitignore --no-must-find-files --unique --no-progress --show-suggestions --color **/*",
"test:unit": "jest --verbose --config=src/unit.jest.config.ts",
"test:unit:coverage": "jest --coverage --verbose --config=src/unit.jest.config.ts",
"validate:all": "npm run validate:ts && npm run lint:ts && npm run validate:yml && npm run validate:md && npm run validate:renovate",
"validate:commit:message": "npx commitlint --color --strict",
"validate:md": "npx markdownlint-cli --config .markdownlint.json \"**/*.md\"",
"validate:renovate": "npx renovate-config-validator",
"validate:ts": "npx tsc --noEmit --project src/tsconfig.json",
"validate:yml": "npx yaml-lint **/*.yml --ignore=**/node_modules"
},
"overrides": {
"@ministryofjustice/eslint-config-hmpps": {
"flatted": "~3.4.2"
},
"notifications-node-client": {
"axios": "~1.15.0"
}
},
"dependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"notifications-node-client": "^8.3.2"
},
"devDependencies": {
"@jest/types": "^30.3.0",
"@ministryofjustice/eslint-config-hmpps": "^1.0.3",
"@tsconfig/node24": "^24.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"cspell": "~10.0.0",
"jest": "^30.3.0",
"markdownlint-cli": "^0.48.0",
"renovate": "~43.120.1",
"sort-package-json": "^3.6.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"yaml-lint": "^1.7.0"
}
}