-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.35 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.35 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
{
"name": "core-github-actions",
"version": "1.0.0",
"description": "Core Team's reusable GitHub Actions",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSesame/core-github-actions.git"
},
"author": "Core Services Team @ OpenSesame",
"license": "UNLICENSED",
"homepage": "https://github.com/OpenSesame/core-github-actions#readme",
"devDependencies": {
"@eslint/js": "9.39.2",
"@eslint/json": "0.14.0",
"@eslint/markdown": "7.5.1",
"eslint": "9.39.2",
"globals": "16.5.0",
"husky": "9.0.11",
"jest": "30.2.0",
"prettier": "3.7.4",
"semgrep": "0.0.1"
},
"scripts": {
"prepare": "husky install",
"test": "jest",
"watch": "jest --watch",
"audit": "npm audit --audit-level=high --omit=dev",
"lint:check": "eslint *.js --ext .js,.json",
"lint:fix": "eslint *.js --ext .js,.json --fix",
"format:check": "prettier --check './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.*'",
"format:fix": "prettier --write './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.*'",
"scan": "semgrep --config=p/ci --config=p/security-audit --config=p/javascript ./*.js ./*.mjs ./*.json scripts/ .github/actions/",
"check": "npm run audit && npm run test && npm run lint:check && npm run format:check && npm run scan"
}
}