-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 969 Bytes
/
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": "@remato/submodule-status-commenter",
"version": "2.1.1",
"license": "MIT",
"description": "GitHub action to comment submodules current branch and state to the PR",
"main": "dist/index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "ncc build src/index.ts",
"prettier": "prettier --list-different \"**/*.ts\"",
"lint": "eslint \"**/*.ts\""
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2",
"axios": "^1.7.9",
"moment": "^2.30.1"
},
"devDependencies": {
"@remato/eslint-config": "^1.14.0",
"@remato/prettier-config": "^1.0.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"prettier": "@remato/prettier-config",
"eslintConfig": {
"extends": [
"@remato/eslint-config/typescript"
],
"ignorePatterns": [
"dist"
],
"rules": {
"no-console": 0
}
}
}