mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 05:46:32 +00:00
* docs: remove specs, they live in spec repo (#4172) * docs: remove specs, they live in spec repo - moving specs to spec repo - https://github.com/tendermint/spec/pull/62 PR for updating them Signed-off-by: Marko Baricevic <marbar3778@yahoo.com> * add makefile command to copy in sepcs from specREPO - move cloning of spec repo to pre and post scripts Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>
23 lines
548 B
JSON
23 lines
548 B
JSON
{
|
|
"name": "docs",
|
|
"version": "1.0.0",
|
|
"description": "Welcome to the Tendermint Core documentation!",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"vuepress-theme-cosmos": "^1.0.73"
|
|
},
|
|
"devDependencies": {
|
|
"@vuepress/plugin-google-analytics": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"preserve": "./pre.sh",
|
|
"serve": "trap 'exit 0' SIGINT; vuepress dev",
|
|
"postserve": "./post.sh",
|
|
"prebuild": "./pre.sh",
|
|
"build": "trap 'exit 0' SIGINT; vuepress build",
|
|
"postbuild": "./post.sh"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|