package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "fast-json-stable-stringify",
  3. "version": "2.1.0",
  4. "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "dependencies": {},
  8. "devDependencies": {
  9. "benchmark": "^2.1.4",
  10. "coveralls": "^3.0.0",
  11. "eslint": "^6.7.0",
  12. "fast-stable-stringify": "latest",
  13. "faster-stable-stringify": "latest",
  14. "json-stable-stringify": "latest",
  15. "nyc": "^14.1.0",
  16. "pre-commit": "^1.2.2",
  17. "tape": "^4.11.0"
  18. },
  19. "scripts": {
  20. "eslint": "eslint index.js test",
  21. "test-spec": "tape test/*.js",
  22. "test": "npm run eslint && nyc npm run test-spec"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git"
  27. },
  28. "homepage": "https://github.com/epoberezkin/fast-json-stable-stringify",
  29. "keywords": [
  30. "json",
  31. "stringify",
  32. "deterministic",
  33. "hash",
  34. "stable"
  35. ],
  36. "author": {
  37. "name": "James Halliday",
  38. "email": "mail@substack.net",
  39. "url": "http://substack.net"
  40. },
  41. "license": "MIT",
  42. "nyc": {
  43. "exclude": [
  44. "test",
  45. "node_modules"
  46. ],
  47. "reporter": [
  48. "lcov",
  49. "text-summary"
  50. ]
  51. }
  52. }