package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "javascript-stringify",
  3. "version": "2.1.0",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
  8. "license": "MIT",
  9. "repository": "https://github.com/blakeembrey/javascript-stringify.git",
  10. "author": {
  11. "name": "Blake Embrey",
  12. "email": "hello@blakeembrey.com",
  13. "url": "http://blakeembrey.me"
  14. },
  15. "homepage": "https://github.com/blakeembrey/javascript-stringify",
  16. "bugs": {
  17. "url": "https://github.com/blakeembrey/javascript-stringify/issues"
  18. },
  19. "main": "dist/index.js",
  20. "scripts": {
  21. "format": "ts-scripts format",
  22. "lint": "ts-scripts lint",
  23. "prepare": "ts-scripts install && ts-scripts build",
  24. "specs": "ts-scripts specs",
  25. "test": "ts-scripts test"
  26. },
  27. "files": [
  28. "dist/"
  29. ],
  30. "keywords": [
  31. "stringify",
  32. "javascript",
  33. "object",
  34. "eval",
  35. "string",
  36. "code"
  37. ],
  38. "devDependencies": {
  39. "@borderless/ts-scripts": "^0.4.1",
  40. "@types/jest": "^24.0.9",
  41. "@types/node": "^11.10.4",
  42. "@types/semver": "^5.5.0",
  43. "fast-check": "^1.12.0",
  44. "semver": "^5.6.0",
  45. "typescript": "^4.2.4"
  46. },
  47. "types": "dist/index.d.ts",
  48. "ts-scripts": {
  49. "project": "tsconfig.build.json"
  50. }
  51. }