vagrant/website/package.json

29 lines
702 B
JSON
Raw Normal View History

2020-05-05 16:38:44 -04:00
{
"name": "vagrant-docs",
"description": "Documentation website for HashiCorp Vagrant",
"version": "1.0.0",
"author": "HashiCorp",
2022-04-19 16:09:05 -04:00
"dependencies": {},
2020-05-05 16:38:44 -04:00
"devDependencies": {
2021-10-04 16:57:52 -04:00
"@hashicorp/platform-cli": "^1.2.0",
2022-04-19 16:09:05 -04:00
"husky": "4.3.8",
"prettier": "2.2.1"
2020-05-05 16:38:44 -04:00
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"scripts": {
2022-04-19 16:09:05 -04:00
"build": "./scripts/website-build.sh",
2020-05-05 16:38:44 -04:00
"format": "next-hashicorp format",
2020-06-01 19:15:13 -04:00
"generate:readme": "next-hashicorp markdown-blocks README.md",
2020-05-05 16:38:44 -04:00
"lint": "next-hashicorp lint",
2022-04-19 16:09:05 -04:00
"linkcheck": "linkcheck https://vagrantup.com",
"start": "./scripts/website-start.sh"
2021-10-04 16:57:52 -04:00
},
"engines": {
"npm": ">=7.0.0"
2020-05-05 16:38:44 -04:00
}
}