package.json 2.4 KB

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