package.json 1.2 KB

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