-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "codescanningtoslack",
"version": "1.0.0",
"description": "Drop Code Scanning Alerts into Slack",
"main": "main.js",
"scripts": {
"prepare": "husky install",
"prettier:write": "npx prettier --write '**/*.{ts,json,md,yaml,yml}'",
"prettier:check": "npx prettier --check '**/*.{ts,json,md,yaml,yml}'",
"lint:check": "npx eslint '**/*.{ts,json}'",
"lint:write": "npx eslint --fix '**/*.{ts,json}'",
"codespace-setup": ".devcontainer/setup.sh",
"upgrade": ".devcontainer/ncu.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickLiffen/codescanningtoslack.git"
},
"keywords": [
"GitHub",
"Code",
"Scanning",
"Slack"
],
"author": "Nick Liffen",
"license": "ISC",
"bugs": {
"url": "https://github.com/NickLiffen/codescanningtoslack/issues"
},
"homepage": "https://github.com/NickLiffen/codescanningtoslack#readme",
"devDependencies": {
"husky": "^9.0.11",
"@tsconfig/node20": "^20.1.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}