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.

40 lines
1017 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. "remark-lint-write-good": "^1.0.3",
  7. "textlint": "^10.2.1",
  8. "textlint-rule-stop-words": "^1.0.3"
  9. },
  10. "name": "tendermint",
  11. "description": "Tendermint Core Documentation",
  12. "version": "0.0.1",
  13. "main": "README.md",
  14. "devDependencies": {},
  15. "scripts": {
  16. "lint:json": "prettier \"**/*.json\" --write",
  17. "lint:md": "prettier \"**/*.md\" --write && remark . && textlint \"md/**\"",
  18. "lint": "yarn lint:json && yarn lint:md"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/tendermint/tendermint.git"
  23. },
  24. "keywords": [
  25. "tendermint",
  26. "blockchain"
  27. ],
  28. "author": "Tendermint",
  29. "license": "ISC",
  30. "bugs": {
  31. "url": "https://github.com/tendermint/tendermint/issues"
  32. },
  33. "homepage": "https://tendermint.com/docs/",
  34. "remarkConfig": {
  35. "plugins": [
  36. "remark-lint-no-dead-urls",
  37. "remark-lint-write-good"
  38. ]
  39. }
  40. }