Changeset 79a0317 for imaps-frontend/node_modules/flatted
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/flatted/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "flatted", 3 "version": "3.3.2", 4 "description": "A super light and fast circular JSON parser.", 5 "unpkg": "min.js", 6 "main": "./cjs/index.js", 7 "scripts": { 8 "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", 9 "cjs": "ascjs esm cjs", 10 "rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck", 11 "rollup:esm": "rollup --config rollup/esm.config.js", 12 "rollup:babel": "rollup --config rollup/babel.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck", 13 "min": "terser index.js -c -m -o min.js", 14 "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", 15 "test": "c8 node test/index.js", 16 "test:php": "php php/test.php", 17 "test:py": "python python/test.py", 18 "ts": "tsc -p .", 19 "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info" 2 "_from": "flatted@^3.2.9", 3 "_id": "flatted@3.3.2", 4 "_inBundle": false, 5 "_integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 6 "_location": "/flatted", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "flatted@^3.2.9", 12 "name": "flatted", 13 "escapedName": "flatted", 14 "rawSpec": "^3.2.9", 15 "saveSpec": null, 16 "fetchSpec": "^3.2.9" 20 17 }, 21 "repository": { 22 "type": "git", 23 "url": "git+https://github.com/WebReflection/flatted.git" 18 "_requiredBy": [ 19 "/flat-cache" 20 ], 21 "_resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 22 "_shasum": "adba1448a9841bec72b42c532ea23dbbedef1a27", 23 "_spec": "flatted@^3.2.9", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/flat-cache", 25 "author": { 26 "name": "Andrea Giammarchi" 24 27 }, 25 "keywords": [26 "circular",27 "JSON",28 "fast",29 "parser",30 "minimal"31 ],32 "author": "Andrea Giammarchi",33 "license": "ISC",34 28 "bugs": { 35 29 "url": "https://github.com/WebReflection/flatted/issues" 36 30 }, 37 "homepage": "https://github.com/WebReflection/flatted#readme", 31 "bundleDependencies": false, 32 "deprecated": false, 33 "description": "A super light and fast circular JSON parser.", 38 34 "devDependencies": { 39 35 "@babel/core": "^7.23.9", … … 51 47 "typescript": "^5.3.3" 52 48 }, 53 "module": "./esm/index.js",54 "type": "module",55 49 "exports": { 56 50 ".": { … … 62 56 "./package.json": "./package.json" 63 57 }, 64 "types": "./types/index.d.ts" 58 "homepage": "https://github.com/WebReflection/flatted#readme", 59 "keywords": [ 60 "circular", 61 "JSON", 62 "fast", 63 "parser", 64 "minimal" 65 ], 66 "license": "ISC", 67 "main": "./cjs/index.js", 68 "module": "./esm/index.js", 69 "name": "flatted", 70 "repository": { 71 "type": "git", 72 "url": "git+https://github.com/WebReflection/flatted.git" 73 }, 74 "scripts": { 75 "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", 76 "cjs": "ascjs esm cjs", 77 "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info", 78 "min": "terser index.js -c -m -o min.js", 79 "rollup:babel": "rollup --config rollup/babel.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck", 80 "rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck", 81 "rollup:esm": "rollup --config rollup/esm.config.js", 82 "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", 83 "test": "c8 node test/index.js", 84 "test:php": "php php/test.php", 85 "test:py": "python python/test.py", 86 "ts": "tsc -p ." 87 }, 88 "type": "module", 89 "types": "./types/index.d.ts", 90 "unpkg": "min.js", 91 "version": "3.3.2" 65 92 }
Note:
See TracChangeset
for help on using the changeset viewer.