package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "parse-asn1",
  3. "version": "5.1.7",
  4. "description": "utility library for parsing asn1 files for use with browserify-sign.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublish": "not-in-publish || npm run prepublishOnly",
  9. "prepublishOnly": "safe-publish-latest",
  10. "lint": "eslint --ext=js,mjs .",
  11. "tests-only": "tape 'test/**/*.js'",
  12. "pretest": "npm run lint",
  13. "test": "npm run tests-only",
  14. "posttest": "aud --production",
  15. "version": "auto-changelog && git add CHANGELOG.md",
  16. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/crypto-browserify/parse-asn1.git"
  21. },
  22. "author": "",
  23. "license": "ISC",
  24. "dependencies": {
  25. "asn1.js": "^4.10.1",
  26. "browserify-aes": "^1.2.0",
  27. "evp_bytestokey": "^1.0.3",
  28. "hash-base": "~3.0",
  29. "pbkdf2": "^3.1.2",
  30. "safe-buffer": "^5.2.1"
  31. },
  32. "devDependencies": {
  33. "@ljharb/eslint-config": "^21.1.0",
  34. "aud": "^2.0.4",
  35. "auto-changelog": "^2.4.0",
  36. "eslint": "=8.8.0",
  37. "in-publish": "^2.0.1",
  38. "npmignore": "^0.3.1",
  39. "safe-publish-latest": "^2.0.0",
  40. "tape": "^5.7.5"
  41. },
  42. "engines": {
  43. "node": ">= 0.10"
  44. },
  45. "auto-changelog": {
  46. "output": "CHANGELOG.md",
  47. "template": "keepachangelog",
  48. "unreleased": false,
  49. "commitLimit": false,
  50. "backfillLimit": false,
  51. "hideCredit": true
  52. },
  53. "publishConfig": {
  54. "ignore": [
  55. ".github/workflows",
  56. "test"
  57. ]
  58. }
  59. }