-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
{
"name": "googlejavaformat-action",
"version": "3.0.0",
"description": "Automatically format your Java files using Google Java Style guidelines.",
"main": "index.js",
"scripts": {
"prepare": "ncc build src/index.ts -o dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axel-op/googlejavaformat-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/axel-op/googlejavaformat-action/issues"
},
"homepage": "https://github.com/axel-op/googlejavaformat-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.2.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/node": "^22.13.1",
"@vercel/ncc": "^0.38.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}