package.json 782 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "author": "Joyent (joyent.com)",
  3. "contributors": [
  4. "Mark Cavage <mcavage@gmail.com>",
  5. "David Gwynne <loki@animata.net>",
  6. "Yunong Xiao <yunong@joyent.com>",
  7. "Alex Wilson <alex.wilson@joyent.com>"
  8. ],
  9. "name": "asn1",
  10. "description": "Contains parsers and serializers for ASN.1 (currently BER only)",
  11. "version": "0.2.6",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/joyent/node-asn1.git"
  15. },
  16. "main": "lib/index.js",
  17. "dependencies": {
  18. "safer-buffer": "~2.1.0"
  19. },
  20. "devDependencies": {
  21. "istanbul": "^0.3.6",
  22. "faucet": "0.0.1",
  23. "tape": "^3.5.0",
  24. "eslint": "2.13.1",
  25. "eslint-plugin-joyent": "~1.3.0"
  26. },
  27. "scripts": {
  28. "test": "./node_modules/.bin/tape ./test/ber/*.test.js"
  29. },
  30. "license": "MIT"
  31. }