-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "gssar",
"version": "1.0.0",
"description": "GitHub Secret Scanning Auto Remediator (GSSAR)",
"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}'",
"cfn-check": "cfn-lint -t ./template.yml",
"check": "yarn run prettier-check && yarn run lint-check && yarn run cfn-check",
"write": "yarn run prettier-write && yarn run lint-write",
"codespace-setup": ".devcontainer/setup.sh",
"upgrade": ".devcontainer/ncu.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/NickLiffen/GSSAR.git"
},
"keywords": [
"GitHub",
"Code",
"Scanning"
],
"author": "Nick Liffen",
"license": "ISC",
"bugs": {
"url": "https://github.com/NickLiffen/GSSAR/issues"
},
"homepage": "https://github.com/NickLiffen/GSSAR#readme",
"devDependencies": {
"husky": "^7.0.0",
"@tsconfig/node14": "^1.0.1",
"@types/json-schema": "^7.0.9",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}