選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "base-x",
  3. "version": "3.0.9",
  4. "description": "Fast base encoding / decoding of any given alphabet",
  5. "keywords": [
  6. "base-x",
  7. "base58",
  8. "base62",
  9. "base64",
  10. "crypto",
  11. "crytography",
  12. "decode",
  13. "decoding",
  14. "encode",
  15. "encoding"
  16. ],
  17. "homepage": "https://github.com/cryptocoinjs/base-x",
  18. "bugs": {
  19. "url": "https://github.com/cryptocoinjs/base-x/issues"
  20. },
  21. "license": "MIT",
  22. "author": "Daniel Cousens",
  23. "files": [
  24. "src"
  25. ],
  26. "main": "src/index.js",
  27. "types": "src/index.d.ts",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/cryptocoinjs/base-x.git"
  31. },
  32. "scripts": {
  33. "build": "tsc -p ./tsconfig.json ; standard --fix",
  34. "gitdiff": "npm run build && git diff --exit-code",
  35. "prepublish": "npm run gitdiff",
  36. "standard": "standard",
  37. "test": "npm run unit && npm run standard",
  38. "unit": "tape test/*.js"
  39. },
  40. "devDependencies": {
  41. "@types/node": "12.0.10",
  42. "standard": "^10.0.3",
  43. "tape": "^4.5.1",
  44. "typescript": "3.5.2"
  45. },
  46. "dependencies": {
  47. "safe-buffer": "^5.0.1"
  48. }
  49. }