-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.2 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
{
"name": "@neolution-ch/action-check-suppressions",
"version": "1.5.0",
"description": "This action check for code analyzer suppressions and add a comment to the pull request",
"homepage": "https://github.com/neolution-ch/action-check-suppressions",
"license": "MIT",
"author": "Neolution",
"main": "dist/index.js",
"source": "src/index.ts",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt -o dist && shx sed -i \"s/\\x0D$//g\" ./dist/index.js",
"prelint": "git ls-files | xargs eclint check",
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
"upgradeAll": "npm-check-updates --packageFile ./package.json -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/action-check-suppressions"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"minimatch": "^7.4.2"
},
"devDependencies": {
"@neolution-ch/eslint-config-neolution": "^1.0.0",
"@types/node": "^18.8.3",
"@vercel/ncc": "^0.34.0",
"eclint": "^2.8.1",
"eslint": "^8.25.0",
"npm-check-updates": "^16.3.11",
"shx": "^0.3.4",
"typescript": "^4.8.4"
}
}