package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "_from": "flatted@^2.0.1",
  3. "_id": "flatted@2.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha1-RXWyHivO50NKqb5mL0t7X5wrUTg=",
  6. "_location": "/flatted",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "flatted@^2.0.1",
  12. "name": "flatted",
  13. "escapedName": "flatted",
  14. "rawSpec": "^2.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.1"
  17. },
  18. "_requiredBy": [
  19. "/log4js"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/flatted/download/flatted-2.0.2.tgz?cache=0&sync_timestamp=1636473847692&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fflatted%2Fdownload%2Fflatted-2.0.2.tgz",
  22. "_shasum": "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138",
  23. "_spec": "flatted@^2.0.1",
  24. "_where": "D:\\project\\server\\logtest\\node_modules\\log4js",
  25. "author": {
  26. "name": "Andrea Giammarchi"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/WebReflection/flatted/issues"
  30. },
  31. "bundleDependencies": false,
  32. "deprecated": false,
  33. "description": "A super light and fast circular JSON parser.",
  34. "devDependencies": {
  35. "circular-json": "^0.5.9",
  36. "circular-json-es6": "^2.0.2",
  37. "coveralls": "^3.0.11",
  38. "jsan": "^3.1.13",
  39. "nyc": "^15.0.0",
  40. "uglify-js": "^3.8.1"
  41. },
  42. "homepage": "https://github.com/WebReflection/flatted#readme",
  43. "keywords": [
  44. "circular",
  45. "JSON",
  46. "fast",
  47. "parser",
  48. "minimal"
  49. ],
  50. "license": "ISC",
  51. "main": "cjs/index.js",
  52. "module": "esm/index.js",
  53. "name": "flatted",
  54. "repository": {
  55. "type": "git",
  56. "url": "git+https://github.com/WebReflection/flatted.git"
  57. },
  58. "scripts": {
  59. "bench": "node test/bench.js",
  60. "build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
  61. "cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
  62. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  63. "esm": "cp index.js esm/index.js; echo 'export default Flatted;' >> esm/index.js; echo 'export var parse = Flatted.parse;' >> esm/index.js; echo 'export var stringify = Flatted.stringify;' >> esm/index.js",
  64. "min": "echo '/*! (c) 2018, Andrea Giammarchi, (ISC) */'>min.js && uglifyjs index.js --support-ie8 -c -m >> min.js",
  65. "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
  66. "test": "nyc node test/index.js"
  67. },
  68. "types": "types.d.ts",
  69. "unpkg": "min.js",
  70. "version": "2.0.2"
  71. }