-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@moonrepo/run-report-action",
"version": "1.8.0",
"description": "A GitHub action that reports the run results of `moon ci` to a pull request.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./index.ts",
"check": "npm run lint && npm run test && npm run typecheck",
"deps": "npx npm-check-updates --interactive",
"lint": "eslint --ext .ts,.js --fix .",
"test": "jest .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/moonrepo/run-report-action"
},
"author": "Miles Johnson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@moonrepo/report": "^1.3.0",
"@moonrepo/types": "^1.18.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@types/node": "^20.14.8",
"@vercel/ncc": "^0.38.1",
"babel-preset-moon": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-moon": "^2.1.2",
"jest": "^29.7.0",
"jest-preset-moon": "^3.0.2",
"prettier": "^3.3.2",
"prettier-config-moon": "^1.1.2",
"tsconfig-moon": "^1.3.0",
"typescript": "^5.3.3"
}
}