forked from bazel-contrib/rules_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.37 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
41
{
"name": "@bazel/javascript",
"description": "Build JavaScript with Bazel",
"version": "5.8.2",
"keywords": [
"javascript",
"bazel"
],
"homepage": "https://github.com/bazelbuild/rules_nodejs",
"repository": "https://github.com/bazelbuild/rules_nodejs",
"license": "Apache-2.0",
"engines": {
"node": ">=12 <=18",
"yarn": ">=1.13.0"
},
"devDependencies": {
"@bazel/bazelisk": "^1.10.1",
"@bazel/buildifier": "^3.2.0",
"@bazel/buildozer": "^3.2.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.2",
"clang-format": "1.5.0",
"conventional-changelog-cli": "^2.0.21",
"husky": "1.3.1"
},
"scripts": {
"// See comment in .bazelrc": "",
"update-codeowners": "./scripts/update_codeowners.sh",
"update-nodejs-versions": "node ./scripts/update-nodejs-versions.js > nodejs/private/node_versions.bzl",
"format": "git-clang-format",
"format-all": "clang-format --glob='{e2e/**/,packages/**/}*.{js,ts}' -i",
"update-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-push": "check-clang-format \"yarn format\"",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}