forked from sgammon/rules_graalvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 797 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
{
"name": "rules_graalvm",
"version": "1.0.0",
"description": "GraalVM Rules for Bazel",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "pnpm run lint:check",
"lint:check": "prettier . --check",
"lint:format": "prettier . --write",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"keywords": [
"graalvm",
"bazel",
"native-image"
],
"author": "Sam Gammon (github.com/sgammon)",
"license": "Apache 2.0",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"husky": "9.1.4",
"lint-staged": "15.2.9",
"prettier": "3.2.5",
"prettier-plugin-java": "2.6.0"
}
}