forked from pmd/pmd-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "pmd-github-action",
"description": "Execute PMD static code analysis.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "npx ncc build lib/index.js --out dist --minify --license licenses.txt && npx convert-action",
"test": "jest --coverage",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmd/pmd-github-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "PMD",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmd/pmd-github-action/issues"
},
"homepage": "https://github.com/pmd/pmd-github-action#readme",
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.9.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^19.0.3",
"semver": "^7.3.7"
},
"devDependencies": {
"@actions/io": "^1.1.2",
"@vercel/ncc": "^0.34.0",
"convert-action": "^0.1.3",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"nock": "^13.2.9"
}
}