package.json 730 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "asn1.js",
  3. "version": "4.10.1",
  4. "description": "ASN.1 encoder and decoder",
  5. "main": "lib/asn1.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec test/*-test.js && cd rfc/2560 && npm i && npm test && cd ../../rfc/5280 && npm i && npm test"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git@github.com:indutny/asn1.js"
  12. },
  13. "keywords": [
  14. "asn.1",
  15. "der"
  16. ],
  17. "author": "Fedor Indutny",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/indutny/asn1.js/issues"
  21. },
  22. "homepage": "https://github.com/indutny/asn1.js",
  23. "devDependencies": {
  24. "mocha": "^2.3.4"
  25. },
  26. "dependencies": {
  27. "bn.js": "^4.0.0",
  28. "inherits": "^2.0.1",
  29. "minimalistic-assert": "^1.0.0"
  30. }
  31. }