package.json 821 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "javascript-stringify",
  3. "version": "1.6.0",
  4. "description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
  5. "main": "javascript-stringify.js",
  6. "typings": "javascript-stringify.d.ts",
  7. "files": [
  8. "javascript-stringify.js",
  9. "javascript-stringify.d.ts"
  10. ],
  11. "scripts": {
  12. "test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
  13. },
  14. "repository": "https://github.com/blakeembrey/javascript-stringify.git",
  15. "keywords": [
  16. "stringify",
  17. "javascript",
  18. "object",
  19. "string"
  20. ],
  21. "author": {
  22. "name": "Blake Embrey",
  23. "email": "hello@blakeembrey.com",
  24. "url": "http://blakeembrey.me"
  25. },
  26. "license": "MIT",
  27. "readmeFilename": "README.md",
  28. "devDependencies": {
  29. "chai": "^1.9.1",
  30. "istanbul": "^0.3.0",
  31. "mocha": "^1.21.3"
  32. }
  33. }