UNPKG

764 BJSONView Raw
1{
2 "name": "auspice-documentation",
3 "version": "1.0.0",
4 "description": "source files for auspice documentation",
5 "author": "James Hadfield",
6 "license": "AGPL-3.0-only",
7 "scripts": {
8 "develop": "cd website && docusaurus-start",
9 "build": "cd website && docusaurus-build && npm run removeBuiltDocs && cp -r ./build/auspice/* ../../docs && npm run makeReadme",
10 "build-docs": "npm run build",
11 "removeBuiltDocs": "rimraf ../docs/*",
12 "makeReadme": "echo '# Auspice built documentation to be served by GitHub pages.\\n\\nFiles in this folder should not be modified by hand -- they are generated from within the `docs-src` directory.' > ../docs/README.md"
13 },
14 "devDependencies": {
15 "docusaurus": "^1.13.0",
16 "rimraf": "^2.6.3"
17 }
18}