仲裁视频会议H5

package.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "flatted",
  3. "version": "3.2.9",
  4. "description": "A super light and fast circular JSON parser.",
  5. "unpkg": "min.js",
  6. "types": "types.d.ts",
  7. "main": "./cjs/index.js",
  8. "scripts": {
  9. "build": "npm run cjs && npm run rollup:esm && npm run rollup:es && npm run rollup:babel && npm run min && npm run test && npm run size",
  10. "cjs": "ascjs esm cjs",
  11. "rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
  12. "rollup:esm": "rollup --config rollup/esm.config.js",
  13. "rollup:babel": "rollup --config rollup/babel.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck",
  14. "min": "terser index.js -c -m -o min.js",
  15. "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c; cat es.js | brotli | wc -c; cat esm.js | brotli | wc -c",
  16. "test": "c8 node test/index.js",
  17. "test:php": "php php/test.php",
  18. "test:py": "python python/test.py",
  19. "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/WebReflection/flatted.git"
  24. },
  25. "keywords": [
  26. "circular",
  27. "JSON",
  28. "fast",
  29. "parser",
  30. "minimal"
  31. ],
  32. "author": "Andrea Giammarchi",
  33. "license": "ISC",
  34. "bugs": {
  35. "url": "https://github.com/WebReflection/flatted/issues"
  36. },
  37. "homepage": "https://github.com/WebReflection/flatted#readme",
  38. "devDependencies": {
  39. "@babel/core": "^7.18.10",
  40. "@babel/preset-env": "^7.18.10",
  41. "@ungap/structured-clone": "^1.0.1",
  42. "ascjs": "^5.0.1",
  43. "c8": "^7.12.0",
  44. "circular-json": "^0.5.9",
  45. "circular-json-es6": "^2.0.2",
  46. "jsan": "^3.1.14",
  47. "rollup": "^2.78.1",
  48. "rollup-plugin-babel": "^4.4.0",
  49. "rollup-plugin-node-resolve": "^5.2.0",
  50. "rollup-plugin-terser": "^7.0.2",
  51. "terser": "^5.14.2"
  52. },
  53. "module": "./esm/index.js",
  54. "type": "module",
  55. "exports": {
  56. ".": {
  57. "types": "./types.d.ts",
  58. "import": "./esm/index.js",
  59. "default": "./cjs/index.js"
  60. },
  61. "./esm": "./esm.js",
  62. "./package.json": "./package.json"
  63. }
  64. }