Use the default husky directory

Since the husky files are not part of the distribution, and RAT is run
only against the distribution files, it is not necessary to make husky
use a directory that is visible to RAT.
diff --git a/.gitattributes b/.gitattributes
index 5994d02..5f64f2d 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,8 +1,8 @@
 .gitattributes export-ignore
 .gitignore export-ignore
 /.asf.yaml export-ignore
+/.husky export-ignore
 /.lintstagedrc export-ignore
 /.ratignore export-ignore
 /.travis.yml export-ignore
-/husky export-ignore
 /repolinter.json export-ignore
diff --git a/husky/pre-commit b/.husky/pre-commit
similarity index 100%
rename from husky/pre-commit
rename to .husky/pre-commit
diff --git a/package.json b/package.json
index 2a3874f..9c93f56 100644
--- a/package.json
+++ b/package.json
@@ -22,7 +22,7 @@
     "clean": "tsc --build --clean && lerna exec -- shx rm -rf DISCLAIMER-WIP LICENSE NOTICE README.md coverage docs lib web/dist",
     "docs": "tsc --build && typedoc",
     "lint": "eslint .",
-    "prepare": "is-ci || shx test -d .git || exit 0 && husky install husky",
+    "prepare": "is-ci || shx test -d .git || exit 0 && husky install",
     "prepublishOnly": "yarn run build",
     "publish": "lerna publish",
     "publish:ci": "yarn run publish --canary --exact --force-publish '*' --no-verify-access --yes minor",