-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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": "setup-buildifier",
"version": "1.0.0",
"description": "GitHub Action for for running format check on Bazel files using [buildifier](https://github.com/bazelbuild/buildtools) checks. This check does not format the code but does only the verification.",
"main": "src/setup-buildifier.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jbajic/setup-buildifier.git"
},
"scripts": {
"watch": "ncc build src/setup-buildifier.ts --watch --minify",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"build": "ncc build src/setup-buildifier.ts --minify"
},
"keywords": [
"buildifier",
"bazel",
"format",
"github",
"actions",
"workflow"
],
"author": "Jure Bajic",
"license": "Apache-2.0",
"dependencies": {
"@actions/cache": "^3.0.4",
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^19.0.4",
"cachedir": "^2.3.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/semver": "^7.3.12",
"@zeit/ncc": "^0.22.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}