You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
903 B

  1. {
  2. "dependencies": {
  3. "prettier": "^1.13.7",
  4. "remark-cli": "^5.0.0",
  5. "remark-lint-no-dead-urls": "^0.3.0",
  6. "textlint": "^10.2.1"
  7. },
  8. "name": "tendermint",
  9. "description": "Tendermint Core Documentation",
  10. "version": "0.0.1",
  11. "main": "README.md",
  12. "devDependencies": {},
  13. "scripts": {
  14. "lint:json": "prettier \"**/*.json\" --write",
  15. "lint:md": "prettier \"**/*.md\" --write && remark . && textlint \"md/**\"",
  16. "lint": "yarn lint:json && yarn lint:md"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/tendermint/tendermint.git"
  21. },
  22. "keywords": [
  23. "tendermint",
  24. "blockchain"
  25. ],
  26. "author": "Tendermint",
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/tendermint/tendermint/issues"
  30. },
  31. "homepage": "https://tendermint.com/docs/",
  32. "remarkConfig": {
  33. "plugins": [
  34. "remark-lint-no-dead-urls"
  35. ]
  36. }
  37. }