package.json 688 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "json-bigint",
  3. "version": "1.0.0",
  4. "description": "JSON.parse with bigints support",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib/parse.js",
  9. "lib/stringify.js"
  10. ],
  11. "scripts": {
  12. "test": "./node_modules/mocha/bin/mocha -R spec --check-leaks test/*-test.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:sidorares/json-bigint.git"
  17. },
  18. "keywords": [
  19. "JSON",
  20. "bigint",
  21. "bignumber",
  22. "parse",
  23. "json"
  24. ],
  25. "author": "Andrey Sidorov <andrey.sidorov@gmail.com>",
  26. "license": "MIT",
  27. "dependencies": {
  28. "bignumber.js": "^9.0.0"
  29. },
  30. "devDependencies": {
  31. "chai": "4.2.0",
  32. "mocha": "8.0.1"
  33. }
  34. }