package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "_args": [
  3. [
  4. "flatted@2.0.2",
  5. "E:\\item\\newItem\\admin"
  6. ]
  7. ],
  8. "_from": "flatted@2.0.2",
  9. "_id": "flatted@2.0.2",
  10. "_inBundle": false,
  11. "_integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
  12. "_location": "/flatted",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "flatted@2.0.2",
  18. "name": "flatted",
  19. "escapedName": "flatted",
  20. "rawSpec": "2.0.2",
  21. "saveSpec": null,
  22. "fetchSpec": "2.0.2"
  23. },
  24. "_requiredBy": [
  25. "/vuex-persist"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
  28. "_spec": "2.0.2",
  29. "_where": "E:\\item\\newItem\\admin",
  30. "author": {
  31. "name": "Andrea Giammarchi"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/WebReflection/flatted/issues"
  35. },
  36. "description": "A super light and fast circular JSON parser.",
  37. "devDependencies": {
  38. "circular-json": "^0.5.9",
  39. "circular-json-es6": "^2.0.2",
  40. "coveralls": "^3.0.11",
  41. "jsan": "^3.1.13",
  42. "nyc": "^15.0.0",
  43. "uglify-js": "^3.8.1"
  44. },
  45. "homepage": "https://github.com/WebReflection/flatted#readme",
  46. "keywords": [
  47. "circular",
  48. "JSON",
  49. "fast",
  50. "parser",
  51. "minimal"
  52. ],
  53. "license": "ISC",
  54. "main": "cjs/index.js",
  55. "module": "esm/index.js",
  56. "name": "flatted",
  57. "repository": {
  58. "type": "git",
  59. "url": "git+https://github.com/WebReflection/flatted.git"
  60. },
  61. "scripts": {
  62. "bench": "node test/bench.js",
  63. "build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
  64. "cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
  65. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  66. "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",
  67. "min": "echo '/*! (c) 2018, Andrea Giammarchi, (ISC) */'>min.js && uglifyjs index.js --support-ie8 -c -m >> min.js",
  68. "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
  69. "test": "nyc node test/index.js"
  70. },
  71. "types": "types.d.ts",
  72. "unpkg": "min.js",
  73. "version": "2.0.2"
  74. }