package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "_args": [
  3. [
  4. "pbkdf2@3.1.2",
  5. "/Users/EricKim/docker-works/go/src/sync-block/third_party/ripple-wallet"
  6. ]
  7. ],
  8. "_from": "pbkdf2@3.1.2",
  9. "_id": "pbkdf2@3.1.2",
  10. "_inBundle": false,
  11. "_integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
  12. "_location": "/pbkdf2",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "pbkdf2@3.1.2",
  18. "name": "pbkdf2",
  19. "escapedName": "pbkdf2",
  20. "rawSpec": "3.1.2",
  21. "saveSpec": null,
  22. "fetchSpec": "3.1.2"
  23. },
  24. "_requiredBy": [
  25. "/bip39"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
  28. "_spec": "3.1.2",
  29. "_where": "/Users/EricKim/docker-works/go/src/sync-block/third_party/ripple-wallet",
  30. "author": {
  31. "name": "Daniel Cousens"
  32. },
  33. "browser": {
  34. "./index.js": "./browser.js",
  35. "./lib/sync.js": "./lib/sync-browser.js"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/crypto-browserify/pbkdf2/issues"
  39. },
  40. "dependencies": {
  41. "create-hash": "^1.1.2",
  42. "create-hmac": "^1.1.4",
  43. "ripemd160": "^2.0.1",
  44. "safe-buffer": "^5.0.1",
  45. "sha.js": "^2.4.8"
  46. },
  47. "description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()",
  48. "devDependencies": {
  49. "benchmark": "^2.1.4",
  50. "browserify": "*",
  51. "nyc": "^6.4.0",
  52. "standard": "*",
  53. "tape": "^4.5.1"
  54. },
  55. "engines": {
  56. "node": ">=0.12"
  57. },
  58. "files": [
  59. "browser.js",
  60. "index.js",
  61. "lib/"
  62. ],
  63. "homepage": "https://github.com/crypto-browserify/pbkdf2",
  64. "keywords": [
  65. "pbkdf2",
  66. "kdf",
  67. "salt",
  68. "hash"
  69. ],
  70. "license": "MIT",
  71. "main": "index.js",
  72. "name": "pbkdf2",
  73. "nyc": {
  74. "exclude": [
  75. "lib/async.js",
  76. "test/bundle.js"
  77. ]
  78. },
  79. "repository": {
  80. "type": "git",
  81. "url": "git+https://github.com/crypto-browserify/pbkdf2.git"
  82. },
  83. "scripts": {
  84. "bench": "node bench/",
  85. "bundle-test": "browserify test/index.js > test/bundle.js",
  86. "coverage": "nyc --check-coverage --branches 95 --functions 95 tape test/*.js",
  87. "coverage-html": "nyc report --reporter=html",
  88. "coverage-report": "nyc report --reporter=lcov",
  89. "lint": "standard",
  90. "prepublish": "npm run test",
  91. "test": "npm run lint && npm run unit",
  92. "unit": "tape test/*.js"
  93. },
  94. "standard": {
  95. "ignore": [
  96. "test/bundle.js"
  97. ]
  98. },
  99. "version": "3.1.2"
  100. }