package.json 929 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "serialize-javascript",
  3. "version": "4.0.0",
  4. "description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.",
  5. "main": "index.js",
  6. "scripts": {
  7. "benchmark": "node -v && node test/benchmark/serialize.js",
  8. "test": "nyc --reporter=lcov mocha test/unit"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/yahoo/serialize-javascript.git"
  13. },
  14. "keywords": [
  15. "serialize",
  16. "serialization",
  17. "javascript",
  18. "js",
  19. "json"
  20. ],
  21. "author": "Eric Ferraiuolo <edf@ericf.me>",
  22. "license": "BSD-3-Clause",
  23. "bugs": {
  24. "url": "https://github.com/yahoo/serialize-javascript/issues"
  25. },
  26. "homepage": "https://github.com/yahoo/serialize-javascript",
  27. "devDependencies": {
  28. "benchmark": "^2.1.4",
  29. "chai": "^4.1.0",
  30. "mocha": "^7.0.0",
  31. "nyc": "^15.0.0"
  32. },
  33. "dependencies": {
  34. "randombytes": "^2.1.0"
  35. }
  36. }