-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "secret-scanning-custom-notifications",
"version": "0.0.1",
"private": true,
"description": "GitHub Action to find and filter secret scanning alerts",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build ./src/main.ts -o dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/advanced-security-demo/secret-scanning-custom-notifications/"
},
"keywords": [
"ghas",
"secret-scanning",
"github-actions"
],
"author": {
"name": "GitHub Professional Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Shadi Samadi",
"email": "s-samadi@github.com",
"url": "https://github.com/s-samadi"
},
{
"name": "Stefan Petrushevski",
"email": "theztefan@github.com",
"url": "https://github.com/theztefan"
}
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@jest/globals": "^29.5.0",
"@octokit/action": "^7.0.1",
"@vercel/ncc": "^0.34.0",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@octokit/rest": "^21.1.1",
"@types/jest": "^29.5.1",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"engines": {
"node": "19"
}
}