Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "bip32",
  3. "version": "2.0.6",
  4. "description": "A BIP32 compatible library",
  5. "keywords": [
  6. "bip32",
  7. "bitcoinjs",
  8. "bitcoin",
  9. "secp256k1"
  10. ],
  11. "main": "./src/index.js",
  12. "types": "./types/index.d.ts",
  13. "engines": {
  14. "node": ">=6.0.0"
  15. },
  16. "scripts": {
  17. "build": "tsc -p ./tsconfig.json",
  18. "coverage-report": "npm run build && npm run nobuild:coverage-report",
  19. "coverage": "npm run build && npm run nobuild:coverage",
  20. "format": "npm run prettier -- --write",
  21. "format:ci": "npm run prettier -- --check",
  22. "gitdiff:ci": "npm run build && git diff --exit-code",
  23. "lint": "tslint -p tsconfig.json -c tslint.json",
  24. "nobuild:coverage-report": "nyc report --reporter=lcov",
  25. "nobuild:coverage": "nyc --check-coverage --branches 90 --functions 90 npm run nobuild:unit",
  26. "nobuild:unit": "tape test/*.js",
  27. "prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",
  28. "test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage",
  29. "unit": "npm run build && npm run nobuild:unit"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git+https://github.com/bitcoinjs/bip32.git"
  34. },
  35. "files": [
  36. "src",
  37. "types"
  38. ],
  39. "dependencies": {
  40. "@types/node": "10.12.18",
  41. "bs58check": "^2.1.1",
  42. "create-hash": "^1.2.0",
  43. "create-hmac": "^1.1.7",
  44. "tiny-secp256k1": "^1.1.3",
  45. "typeforce": "^1.11.5",
  46. "wif": "^2.0.6"
  47. },
  48. "devDependencies": {
  49. "nyc": "^15.0.0",
  50. "prettier": "1.16.4",
  51. "tape": "^4.13.2",
  52. "tslint": "^6.1.0",
  53. "typescript": "3.3.3333"
  54. },
  55. "author": "Daniel Cousens",
  56. "license": "MIT",
  57. "bugs": {
  58. "url": "https://github.com/bitcoinjs/bip32/issues"
  59. }
  60. }