├── .gitignore ├── LICENSE ├── README.md ├── benchmark └── index.js ├── browser ├── nano-copy.js └── nano-copy.min.js ├── index.js ├── package-lock.json ├── package.json └── test ├── fast-copy.min.js ├── index.html └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Simon Y. Blackwell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nano-copy 2 | 3 | Superfast, super small (1,461 bytes minimized, 709 gzipped) JavaScript object deep copy. 4 | Comparable to fast-copy in speed across multiple test runs. 5 | 6 | ## Usage 7 | 8 | ``` 9 | npm install nano-copy 10 | ``` 11 | 12 | ``` 13 | const nanoCopy = require("nano-copy"); 14 | ``` 15 | 16 | or 17 | 18 | ``` 19 | 20 | ``` 21 | 22 | ## Clone Types Supported 23 | 24 | ### Built-in Classes 25 | 26 | ```javascript 27 | [ArrayBuffer,BigInt,Blob,Boolean,Buffer,DataView,Date,Error,Int8Array,Int16Array,Int32Array,Map,Number,RegExp,Set,String,Uint8Array,Uint16Array,Uint32Array] 28 | ``` 29 | 30 | `Blob`, `Buffer` and `DataView` are platform dependent and are included or excluded accordingly. 31 | 32 | ### Custom constructors assuming: 33 | 34 | 1) There is a static `from` method on the class constructor that creates a deep copy. 35 | 36 | Or 37 | 38 | 2) `Object.create(Object.getPrototypeOf(source))` plus interating over all entries in the `source` and assigning their copies to the newly created object is correct. 39 | 40 | ## Direct Copy, i.e. the same instance will be in the copy 41 | 42 | Types returned by `typeof` plus, 43 | 44 | ```javascript 45 | [Boolean,Error,Number,Promise,String,Symbol,WeakMap,WeakSet] 46 | ``` 47 | 48 | ## Not Currently Supported 49 | 50 | 1) Non-enumerable properties 51 | 52 | ## API 53 | 54 | ``` 55 | const copy = nanoCopy(source); 56 | ``` 57 | 58 | Or, to copy non-standard properties on Arrays and other built-in classes pass an optional argument. Note, there is a negative performance impact on long arrays. 59 | 60 | ``` 61 | const copy = nanoCopy(source,{nonStandard:true); 62 | ``` 63 | 64 | ## Benchmarks 65 | 66 | Note, ALL JavaScript benchmarks in a browser or Node.js or Deno should be taken with a grain of salt when packages are within 10 ro 15% of each other 67 | due to browser, operating system, and garbage collection driven impacts. 68 | 69 | ### simple object. 70 | 71 | 72 | | Name | Ops / sec | 73 | | ---------------- | --------- | 74 | | nanocopy | 6,114,025 | 75 | | fast-copy | 4,913,596 | 76 | | lodash.cloneDeep | 2,497,153 | 77 | | clone | 1,931,488 | 78 | | ramda | 1,082,327 | 79 | | fast-clone | 939,717 | 80 | | deepclone | 933,128 | 81 | 82 | 83 | ### complex object. 84 | 85 | | Name | Ops / sec | 86 | | ---------------- | --------- | 87 | | nanocopy | 140,249 | 88 | | fast-copy | 118,246 | 89 | | ramda | 112,758 | 90 | | deepclone | 103,544 | 91 | | fast-clone | 68,412 | 92 | | clone | 58,591 | 93 | | lodash.cloneDeep | 42,097 | 94 | 95 | 96 | ### circular object 97 | 98 | | Name | Ops / sec | 99 | | ---------------- | --------- | 100 | | nanocopy | 2,621,642 | 101 | | fast-copy | 1,719,962 | 102 | | ramda | 1,036,171 | 103 | | deepclone | 967,305 | 104 | | clone | 787,177 | 105 | | lodash.cloneDeep | 755,432 | 106 | | fast-clone | 0 | 107 | 108 | 109 | ### averages 110 | 111 | 112 | | Name | Ops / sec | 113 | | ---------------- | --------- | 114 | | nanocopy | 2,997.136 | 115 | | fast-copy | 2,221.935 | 116 | | lodash.cloneDeep | 1,160.977 | 117 | | clone | 914.969 | 118 | | ramda | 710.087 | 119 | | deepclone | 585.068 | 120 | | fast-clone | 447.621 | 121 | 122 | 123 | ## Release History (Reverse Chronological Order) 124 | 125 | 2024-12-09 v0.1.1 Fixed issue related to objects potentially not having a constructor. Re-ran benchmarks. 126 | 127 | 2020-12-13 v0.1.0 Added support for non-standard properties on Arrays and clonable objects. 128 | 129 | 2020-12-10 v0.0.4b Documentation fixes. 130 | 131 | 2020-12-10 v0.0.3b Fixed node export. Added benchee benchmarks. 132 | 133 | 2020-12-10 v0.0.2b Replaced Object.entries(data) with for(const key in data). Faster and gets inherited properties. 134 | 135 | 2020-12-09 v0.0.1b Initial public release (BETA) 136 | -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- 1 | /* For this file only 2 | 3 | MIT License 4 | 5 | Copyright (c) 2018 Tony Quetano with modifications by AnyWhichWay Copyright (c) 2020 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | 25 | */ 26 | 27 | const { createSuite } = require('benchee'); 28 | const Table = require('cli-table2'); 29 | 30 | /************* data *************/ 31 | 32 | class Foo { 33 | constructor(value) { 34 | this.value = value; 35 | } 36 | } 37 | 38 | const simpleObject = { 39 | boolean: true, 40 | nil: null, 41 | number: 123, 42 | string: 'foo', 43 | }; 44 | 45 | const complexObject = Object.assign({}, simpleObject, { 46 | array: ['foo', { bar: 'baz' }], 47 | arrayBuffer: new ArrayBuffer(8), 48 | buffer: new Buffer('this is a test buffer'), 49 | dataView: new DataView(new ArrayBuffer(16)), 50 | date: new Date(), 51 | error: new Error('boom'), 52 | fn() { 53 | return 'foo'; 54 | }, 55 | map: new Map().set('foo', { bar: { baz: 'quz' } }), 56 | nan: NaN, 57 | object: { foo: { bar: 'baz' } }, 58 | promise: Promise.resolve('foo'), 59 | regexp: /foo/, 60 | set: new Set().add('foo').add({ bar: { baz: 'quz' } }), 61 | typedArray: new Uint8Array([12, 15]), 62 | undef: undefined, 63 | weakmap: new WeakMap([[{}, 'foo'], [{}, 'bar']]), 64 | weakset: new WeakSet([{}, {}]), 65 | [Symbol('key')]: 'value', 66 | }); 67 | 68 | const circularObject = { 69 | deeply: { 70 | nested: { 71 | reference: {}, 72 | }, 73 | }, 74 | }; 75 | 76 | circularObject.deeply.nested.reference = circularObject; 77 | 78 | 79 | /************* setup *************/ 80 | 81 | const getResults = results => { 82 | const table = new Table({ 83 | head: ['Name', 'Ops / sec'], 84 | }); 85 | 86 | results.forEach(({ name, stats }) => { 87 | table.push([name, stats.ops.toLocaleString()]); 88 | }); 89 | 90 | return table.toString(); 91 | }; 92 | 93 | const packages = { 94 | clone: require('clone'), 95 | deepclone: require('deepclone'), 96 | nanocopy: require('../index.js'), 97 | 'fast-clone': require('fast-clone'), 98 | 'fast-copy': require('../test/fast-copy.min.js'), 99 | // deactivated while it cannot build on linux 100 | // 'fast-deepclone': require('fast-deepclone'), 101 | 'lodash.cloneDeep': require('lodash').cloneDeep, 102 | ramda: require('ramda').clone, 103 | }; 104 | 105 | const suite = createSuite({ 106 | minTime: 1000, 107 | onComplete(results) { 108 | const combinedResults = Object.keys(results) 109 | .reduce((combined, group) => { 110 | const groupResults = results[group]; 111 | 112 | return groupResults.map(({ name, stats }) => { 113 | const existingRowIndex = combined.findIndex( 114 | ({ name: rowName }) => name === rowName, 115 | ); 116 | 117 | return ~existingRowIndex 118 | ? { 119 | ...combined[existingRowIndex], 120 | stats: { 121 | elapsed: (combined[existingRowIndex].stats.elapsed += 122 | stats.elapsed), 123 | iterations: (combined[existingRowIndex].stats.iterations += 124 | stats.iterations), 125 | }, 126 | } 127 | : { 128 | name, 129 | stats: { 130 | elapsed: stats.elapsed, 131 | iterations: stats.iterations, 132 | }, 133 | }; 134 | }); 135 | }, []) 136 | .map(({ name, stats }) => ({ 137 | name, 138 | stats: { 139 | ...stats, 140 | ops: stats.iterations / stats.elapsed, 141 | }, 142 | })) 143 | .sort((a, b) => { 144 | if (a.stats.ops > b.stats.ops) { 145 | return -1; 146 | } 147 | 148 | if (a.stats.ops < b.stats.ops) { 149 | return 1; 150 | } 151 | 152 | return 0; 153 | }); 154 | 155 | console.log(''); 156 | console.log('Benchmark results complete, overall averages:'); 157 | console.log(''); 158 | console.log(getResults(combinedResults)); 159 | console.log(''); 160 | }, 161 | onGroupComplete({ group, results }) { 162 | console.log(''); 163 | console.log(`...finished group ${group}.`); 164 | console.log(''); 165 | console.log(getResults(results)); 166 | console.log(''); 167 | }, 168 | onGroupStart(group) { 169 | console.log(''); 170 | console.log(`Starting benchmarks for group ${group}...`); 171 | console.log(''); 172 | }, 173 | onResult({ name, stats }) { 174 | console.log( 175 | `Benchmark completed for ${name}: ${stats.ops.toLocaleString()} ops/sec`, 176 | ); 177 | }, 178 | }); 179 | 180 | /************* tests *************/ 181 | 182 | for (let name in packages) { 183 | const copy = packages[name]; 184 | 185 | suite.add(name, 'simple object', () => copy(simpleObject)); 186 | suite.add(name, 'complex object', () => copy(complexObject)); 187 | suite.add(name, 'circular object', () => copy(circularObject)); 188 | } 189 | 190 | suite.run(); -------------------------------------------------------------------------------- /browser/nano-copy.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | const f = function() {}, 3 | _Buffer = typeof(Buffer)==="function" ? Buffer : f, 4 | _Blob = typeof(Blob)==="function" ? Blob : f, 5 | _DataView = typeof(DataView)==="function" ? DataView : f, 6 | cloners = new Set([ArrayBuffer,BigInt,_Blob,Boolean,_Buffer,_DataView,Date,Error,Int8Array,Int16Array,Int32Array,Map,Number,RegExp,Set,String,Uint8Array,Uint16Array,Uint32Array]), 7 | directs = new Set([Boolean,Error,Number,Promise,String,Symbol,WeakMap,WeakSet]), 8 | nanoCopy = (data,options={},cloned=new WeakMap()) => { 9 | const type = typeof(data), 10 | {nonStandard,nonEnumerable} = options; // nonEnumerable not yet supported 11 | if(!data || type!=="object" || directs.has(data.constructor) || type==="function" || type==="undefined") { 12 | if(data && type==="object") cloned.set(data,data); 13 | return data; 14 | } 15 | let clone = cloned.get(data); 16 | if(clone) return clone; 17 | if(cloners.has(data.constructor)) { 18 | clone = data instanceof _Buffer 19 | ? _Buffer.from(data) 20 | : data instanceof ArrayBuffer 21 | ? data.slice(0) 22 | : data instanceof _Blob 23 | ? new _Blob([data],{type:data.type,endings:data.endings}) 24 | : data instanceof _DataView 25 | ? new _DataView(nanoCopy(data.buffer,options,cloned),data.byteOffset,data.byteLength) 26 | : new data.constructor(data); 27 | cloned.set(data,clone); 28 | if(clone instanceof Set || clone instanceof Map) { 29 | for(const [key,value] of [...clone.entries()]) { 30 | if(clone instanceof Set) { 31 | clone.delete(key); 32 | clone.add(nanoCopy(key,options,cloned)); 33 | } else if(clone instanceof Map) { 34 | clone.delete(key); 35 | clone.set(nanoCopy(key,options,cloned),nanoCopy(value,options,cloned)); 36 | } 37 | } 38 | } 39 | if(nonStandard) { 40 | for(const key in data) { 41 | if(isNaN(parseInt(key))) { 42 | clone[key] = data[key]; 43 | } 44 | } 45 | } 46 | } else if(Array.isArray(data) && !nonStandard) { 47 | clone = data.map((item) => nanoCopy(item,options,cloned)); 48 | } else { 49 | if(data.constructor.from && !Array.isArray(data)) { 50 | try { 51 | clone = data.constructor.from(data); 52 | return clone; 53 | } catch(error) { 54 | // ignore and try Object.create 55 | } 56 | } 57 | clone = Array.isArray(data) ? new data.constructor() : Object.create(Object.getPrototypeOf(data)); 58 | cloned.set(data,clone); 59 | for(const key in data) { 60 | const value = data[key]; 61 | clone[key] = nanoCopy(value,options,cloned); 62 | } 63 | } 64 | return clone; 65 | } 66 | if(typeof(module)!=="undefined") { 67 | module.exports = nanoCopy; 68 | nanoCopy.nanoCopy = nanoCopy; 69 | } 70 | if(typeof(globalThis)!=="undefined") { 71 | globalThis.nanoCopy = nanoCopy; 72 | } 73 | })(); -------------------------------------------------------------------------------- /browser/nano-copy.min.js: -------------------------------------------------------------------------------- 1 | const{isArray:aB}=Array;(()=>{const f=function(){},b=typeof (Buffer)==='function'?Buffer:f,c=typeof (Blob)==='function'?Blob:f,d=typeof (DataView)==='function'?DataView:f,e=new Set([ArrayBuffer,BigInt,c,Boolean,b,d,Date,Error,Int8Array,Int16Array,Int32Array,Map,Number,RegExp,Set,String,Uint8Array,Uint16Array,Uint32Array]),a=new Set([Boolean,Error,Number,Promise,String,Symbol,WeakMap,WeakSet]),g=(A,_={},B=new WeakMap())=>{const D=typeof (A),{nonStandard:E,nonEnumerable:F}=_;if(!A||D!=='object'||a.has(A.constructor)||D==='function'||D==='undefined'){(A&&D==='object')&&B.set(A,A);return A}let G=B.get(A);if(G)return G;if(e.has(A.constructor)){G=A instanceof b?b.from(A):A instanceof ArrayBuffer?A.slice(0):A instanceof c?new c([A], {type:A.type,endings:A.endings}):A instanceof d?new d(g(A.buffer,_,B), A.byteOffset, A.byteLength):new A.constructor(A);B.set(A,G);if(G instanceof Set||G instanceof Map)for(const[C,_b] of G.entries())if(G instanceof Set){G.delete(C);G.add(g(C,_,B))}else G instanceof Map&&(G.delete(C),G.set(g(C,_,B),g(_b,_,B)));if(E)for(const _a in A)isNaN(parseInt(_a))&&(G[_a]=A[_a])}else if(aB(A)&&!E)G=A.map(_A=>g(_A,_,B));else{if(A.constructor.from&&!aB(A))try{G=A.constructor.from(A);return G}catch(aA){}G=aB(A)?new A.constructor():Object.create(Object.getPrototypeOf(A));B.set(A,G);for(const key in A){var h=A[key];G[key]=g(h,_,B)}}return G};typeof (module)!=='undefined'&&(module.exports=g,g.nanoCopy=g);typeof (globalThis)!=='undefined'&&(globalThis.nanoCopy=g)})(); 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | const f = function() {}, 3 | _Buffer = typeof(Buffer)==="function" ? Buffer : f, 4 | _Blob = typeof(Blob)==="function" ? Blob : f, 5 | _DataView = typeof(DataView)==="function" ? DataView : f, 6 | cloners = new Set([ArrayBuffer,BigInt,_Blob,Boolean,_Buffer,_DataView,Date,Error,Int8Array,Int16Array,Int32Array,Map,Number,RegExp,Set,String,Uint8Array,Uint16Array,Uint32Array]), 7 | directs = new Set([Boolean,Error,Number,Promise,String,Symbol,WeakMap,WeakSet]), 8 | nanoCopy = (data,options={},cloned=new WeakMap()) => { 9 | const type = typeof(data), 10 | {nonStandard,nonEnumerable} = options; // nonEnumerable not yet supported 11 | if(!data || type!=="object" || directs.has(data.constructor) || type==="function" || type==="undefined") { 12 | if(data && type==="object") cloned.set(data,data); 13 | return data; 14 | } 15 | let clone = cloned.get(data); 16 | if(clone) return clone; 17 | if(cloners.has(data.constructor)) { 18 | clone = data instanceof _Buffer 19 | ? _Buffer.from(data) 20 | : data instanceof ArrayBuffer 21 | ? data.slice(0) 22 | : data instanceof _Blob 23 | ? new _Blob([data],{type:data.type,endings:data.endings}) 24 | : data instanceof _DataView 25 | ? new _DataView(nanoCopy(data.buffer,options,cloned),data.byteOffset,data.byteLength) 26 | : new data.constructor(data); 27 | cloned.set(data,clone); 28 | if(clone instanceof Set || clone instanceof Map) { 29 | for(const [key,value] of [...clone.entries()]) { 30 | if(clone instanceof Set) { 31 | clone.delete(key); 32 | clone.add(nanoCopy(key,options,cloned)); 33 | } else if(clone instanceof Map) { 34 | clone.delete(key); 35 | clone.set(nanoCopy(key,options,cloned),nanoCopy(value,options,cloned)); 36 | } 37 | } 38 | } 39 | if(nonStandard) { 40 | for(const key in data) { 41 | if(isNaN(parseInt(key))) { 42 | clone[key] = data[key]; 43 | } 44 | } 45 | } 46 | } else if(Array.isArray(data) && !nonStandard) { 47 | clone = data.map((item) => nanoCopy(item,options,cloned)); 48 | } else { 49 | if(data.constructor && data.constructor.from && !Array.isArray(data)) { 50 | try { 51 | clone = data.constructor.from(data); 52 | return clone; 53 | } catch(error) { 54 | // ignore and try Object.create 55 | } 56 | } 57 | clone = Array.isArray(data) ? new data.constructor() : Object.create(Object.getPrototypeOf(data)); 58 | cloned.set(data,clone); 59 | for(const key in data) { 60 | const value = data[key]; 61 | clone[key] = nanoCopy(value,options,cloned); 62 | } 63 | } 64 | return clone; 65 | } 66 | if(typeof(module)!=="undefined") { 67 | module.exports = nanoCopy; 68 | nanoCopy.nanoCopy = nanoCopy; 69 | } 70 | if(typeof(globalThis)!=="undefined") { 71 | globalThis.nanoCopy = nanoCopy; 72 | } 73 | })(); -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nano-copy", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "nano-copy", 9 | "version": "0.1.0", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "benchee": "^1.1.0", 13 | "benchtest": "^2.0.7", 14 | "blanket": "^1.2.3", 15 | "chai": "^4.2.0", 16 | "cli-table2": "^0.2.0", 17 | "clone": "^2.1.2", 18 | "codacy-coverage": "^2.0.3", 19 | "codeclimate-test-reporter": "^0.5.1", 20 | "deepclone": "^1.0.2", 21 | "fast-clone": "^1.5.13", 22 | "fast-copy": "^2.1.0", 23 | "lodash": "^4.17.21", 24 | "minify": "^11.4.0", 25 | "mocha": "^10.7.3", 26 | "ramda": "^0.27.1" 27 | } 28 | }, 29 | "node_modules/@esbuild/aix-ppc64": { 30 | "version": "0.23.1", 31 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", 32 | "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", 33 | "cpu": [ 34 | "ppc64" 35 | ], 36 | "dev": true, 37 | "license": "MIT", 38 | "optional": true, 39 | "os": [ 40 | "aix" 41 | ], 42 | "engines": { 43 | "node": ">=18" 44 | } 45 | }, 46 | "node_modules/@esbuild/android-arm": { 47 | "version": "0.23.1", 48 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", 49 | "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", 50 | "cpu": [ 51 | "arm" 52 | ], 53 | "dev": true, 54 | "license": "MIT", 55 | "optional": true, 56 | "os": [ 57 | "android" 58 | ], 59 | "engines": { 60 | "node": ">=18" 61 | } 62 | }, 63 | "node_modules/@esbuild/android-arm64": { 64 | "version": "0.23.1", 65 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", 66 | "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", 67 | "cpu": [ 68 | "arm64" 69 | ], 70 | "dev": true, 71 | "license": "MIT", 72 | "optional": true, 73 | "os": [ 74 | "android" 75 | ], 76 | "engines": { 77 | "node": ">=18" 78 | } 79 | }, 80 | "node_modules/@esbuild/android-x64": { 81 | "version": "0.23.1", 82 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", 83 | "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", 84 | "cpu": [ 85 | "x64" 86 | ], 87 | "dev": true, 88 | "license": "MIT", 89 | "optional": true, 90 | "os": [ 91 | "android" 92 | ], 93 | "engines": { 94 | "node": ">=18" 95 | } 96 | }, 97 | "node_modules/@esbuild/darwin-arm64": { 98 | "version": "0.23.1", 99 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", 100 | "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", 101 | "cpu": [ 102 | "arm64" 103 | ], 104 | "dev": true, 105 | "license": "MIT", 106 | "optional": true, 107 | "os": [ 108 | "darwin" 109 | ], 110 | "engines": { 111 | "node": ">=18" 112 | } 113 | }, 114 | "node_modules/@esbuild/darwin-x64": { 115 | "version": "0.23.1", 116 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", 117 | "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", 118 | "cpu": [ 119 | "x64" 120 | ], 121 | "dev": true, 122 | "license": "MIT", 123 | "optional": true, 124 | "os": [ 125 | "darwin" 126 | ], 127 | "engines": { 128 | "node": ">=18" 129 | } 130 | }, 131 | "node_modules/@esbuild/freebsd-arm64": { 132 | "version": "0.23.1", 133 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", 134 | "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", 135 | "cpu": [ 136 | "arm64" 137 | ], 138 | "dev": true, 139 | "license": "MIT", 140 | "optional": true, 141 | "os": [ 142 | "freebsd" 143 | ], 144 | "engines": { 145 | "node": ">=18" 146 | } 147 | }, 148 | "node_modules/@esbuild/freebsd-x64": { 149 | "version": "0.23.1", 150 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", 151 | "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", 152 | "cpu": [ 153 | "x64" 154 | ], 155 | "dev": true, 156 | "license": "MIT", 157 | "optional": true, 158 | "os": [ 159 | "freebsd" 160 | ], 161 | "engines": { 162 | "node": ">=18" 163 | } 164 | }, 165 | "node_modules/@esbuild/linux-arm": { 166 | "version": "0.23.1", 167 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", 168 | "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", 169 | "cpu": [ 170 | "arm" 171 | ], 172 | "dev": true, 173 | "license": "MIT", 174 | "optional": true, 175 | "os": [ 176 | "linux" 177 | ], 178 | "engines": { 179 | "node": ">=18" 180 | } 181 | }, 182 | "node_modules/@esbuild/linux-arm64": { 183 | "version": "0.23.1", 184 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", 185 | "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", 186 | "cpu": [ 187 | "arm64" 188 | ], 189 | "dev": true, 190 | "license": "MIT", 191 | "optional": true, 192 | "os": [ 193 | "linux" 194 | ], 195 | "engines": { 196 | "node": ">=18" 197 | } 198 | }, 199 | "node_modules/@esbuild/linux-ia32": { 200 | "version": "0.23.1", 201 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", 202 | "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", 203 | "cpu": [ 204 | "ia32" 205 | ], 206 | "dev": true, 207 | "license": "MIT", 208 | "optional": true, 209 | "os": [ 210 | "linux" 211 | ], 212 | "engines": { 213 | "node": ">=18" 214 | } 215 | }, 216 | "node_modules/@esbuild/linux-loong64": { 217 | "version": "0.23.1", 218 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", 219 | "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", 220 | "cpu": [ 221 | "loong64" 222 | ], 223 | "dev": true, 224 | "license": "MIT", 225 | "optional": true, 226 | "os": [ 227 | "linux" 228 | ], 229 | "engines": { 230 | "node": ">=18" 231 | } 232 | }, 233 | "node_modules/@esbuild/linux-mips64el": { 234 | "version": "0.23.1", 235 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", 236 | "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", 237 | "cpu": [ 238 | "mips64el" 239 | ], 240 | "dev": true, 241 | "license": "MIT", 242 | "optional": true, 243 | "os": [ 244 | "linux" 245 | ], 246 | "engines": { 247 | "node": ">=18" 248 | } 249 | }, 250 | "node_modules/@esbuild/linux-ppc64": { 251 | "version": "0.23.1", 252 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", 253 | "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", 254 | "cpu": [ 255 | "ppc64" 256 | ], 257 | "dev": true, 258 | "license": "MIT", 259 | "optional": true, 260 | "os": [ 261 | "linux" 262 | ], 263 | "engines": { 264 | "node": ">=18" 265 | } 266 | }, 267 | "node_modules/@esbuild/linux-riscv64": { 268 | "version": "0.23.1", 269 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", 270 | "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", 271 | "cpu": [ 272 | "riscv64" 273 | ], 274 | "dev": true, 275 | "license": "MIT", 276 | "optional": true, 277 | "os": [ 278 | "linux" 279 | ], 280 | "engines": { 281 | "node": ">=18" 282 | } 283 | }, 284 | "node_modules/@esbuild/linux-s390x": { 285 | "version": "0.23.1", 286 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", 287 | "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", 288 | "cpu": [ 289 | "s390x" 290 | ], 291 | "dev": true, 292 | "license": "MIT", 293 | "optional": true, 294 | "os": [ 295 | "linux" 296 | ], 297 | "engines": { 298 | "node": ">=18" 299 | } 300 | }, 301 | "node_modules/@esbuild/linux-x64": { 302 | "version": "0.23.1", 303 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", 304 | "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", 305 | "cpu": [ 306 | "x64" 307 | ], 308 | "dev": true, 309 | "license": "MIT", 310 | "optional": true, 311 | "os": [ 312 | "linux" 313 | ], 314 | "engines": { 315 | "node": ">=18" 316 | } 317 | }, 318 | "node_modules/@esbuild/netbsd-x64": { 319 | "version": "0.23.1", 320 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", 321 | "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", 322 | "cpu": [ 323 | "x64" 324 | ], 325 | "dev": true, 326 | "license": "MIT", 327 | "optional": true, 328 | "os": [ 329 | "netbsd" 330 | ], 331 | "engines": { 332 | "node": ">=18" 333 | } 334 | }, 335 | "node_modules/@esbuild/openbsd-arm64": { 336 | "version": "0.23.1", 337 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", 338 | "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", 339 | "cpu": [ 340 | "arm64" 341 | ], 342 | "dev": true, 343 | "license": "MIT", 344 | "optional": true, 345 | "os": [ 346 | "openbsd" 347 | ], 348 | "engines": { 349 | "node": ">=18" 350 | } 351 | }, 352 | "node_modules/@esbuild/openbsd-x64": { 353 | "version": "0.23.1", 354 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", 355 | "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", 356 | "cpu": [ 357 | "x64" 358 | ], 359 | "dev": true, 360 | "license": "MIT", 361 | "optional": true, 362 | "os": [ 363 | "openbsd" 364 | ], 365 | "engines": { 366 | "node": ">=18" 367 | } 368 | }, 369 | "node_modules/@esbuild/sunos-x64": { 370 | "version": "0.23.1", 371 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", 372 | "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", 373 | "cpu": [ 374 | "x64" 375 | ], 376 | "dev": true, 377 | "license": "MIT", 378 | "optional": true, 379 | "os": [ 380 | "sunos" 381 | ], 382 | "engines": { 383 | "node": ">=18" 384 | } 385 | }, 386 | "node_modules/@esbuild/win32-arm64": { 387 | "version": "0.23.1", 388 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", 389 | "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", 390 | "cpu": [ 391 | "arm64" 392 | ], 393 | "dev": true, 394 | "license": "MIT", 395 | "optional": true, 396 | "os": [ 397 | "win32" 398 | ], 399 | "engines": { 400 | "node": ">=18" 401 | } 402 | }, 403 | "node_modules/@esbuild/win32-ia32": { 404 | "version": "0.23.1", 405 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", 406 | "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", 407 | "cpu": [ 408 | "ia32" 409 | ], 410 | "dev": true, 411 | "license": "MIT", 412 | "optional": true, 413 | "os": [ 414 | "win32" 415 | ], 416 | "engines": { 417 | "node": ">=18" 418 | } 419 | }, 420 | "node_modules/@esbuild/win32-x64": { 421 | "version": "0.23.1", 422 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", 423 | "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", 424 | "cpu": [ 425 | "x64" 426 | ], 427 | "dev": true, 428 | "license": "MIT", 429 | "optional": true, 430 | "os": [ 431 | "win32" 432 | ], 433 | "engines": { 434 | "node": ">=18" 435 | } 436 | }, 437 | "node_modules/@hapi/address": { 438 | "version": "1.0.1", 439 | "resolved": "https://registry.npmjs.org/@hapi/address/-/address-1.0.1.tgz", 440 | "integrity": "sha512-Z7nz/NjPN7nqVe9plLg7yjmKTfde3jf/6ytcNIXPVrWzzm3H/QnIHYbVQEoMtqWcxmfblOkAxF9TPpTRaCim8g==", 441 | "deprecated": "Please update your dependencies as this version is no longer maintained and may contain bugs and security issues.", 442 | "dev": true, 443 | "license": "SEE LICENSE IN LICENSE.md", 444 | "engines": { 445 | "node": ">=6.0.0" 446 | } 447 | }, 448 | "node_modules/@jridgewell/gen-mapping": { 449 | "version": "0.3.5", 450 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 451 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 452 | "dev": true, 453 | "license": "MIT", 454 | "dependencies": { 455 | "@jridgewell/set-array": "^1.2.1", 456 | "@jridgewell/sourcemap-codec": "^1.4.10", 457 | "@jridgewell/trace-mapping": "^0.3.24" 458 | }, 459 | "engines": { 460 | "node": ">=6.0.0" 461 | } 462 | }, 463 | "node_modules/@jridgewell/resolve-uri": { 464 | "version": "3.1.2", 465 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 466 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 467 | "dev": true, 468 | "license": "MIT", 469 | "engines": { 470 | "node": ">=6.0.0" 471 | } 472 | }, 473 | "node_modules/@jridgewell/set-array": { 474 | "version": "1.2.1", 475 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 476 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 477 | "dev": true, 478 | "license": "MIT", 479 | "engines": { 480 | "node": ">=6.0.0" 481 | } 482 | }, 483 | "node_modules/@jridgewell/source-map": { 484 | "version": "0.3.6", 485 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", 486 | "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", 487 | "dev": true, 488 | "license": "MIT", 489 | "dependencies": { 490 | "@jridgewell/gen-mapping": "^0.3.5", 491 | "@jridgewell/trace-mapping": "^0.3.25" 492 | } 493 | }, 494 | "node_modules/@jridgewell/sourcemap-codec": { 495 | "version": "1.5.0", 496 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 497 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 498 | "dev": true, 499 | "license": "MIT" 500 | }, 501 | "node_modules/@jridgewell/trace-mapping": { 502 | "version": "0.3.25", 503 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 504 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 505 | "dev": true, 506 | "license": "MIT", 507 | "dependencies": { 508 | "@jridgewell/resolve-uri": "^3.1.0", 509 | "@jridgewell/sourcemap-codec": "^1.4.14" 510 | } 511 | }, 512 | "node_modules/@putout/minify": { 513 | "version": "4.5.0", 514 | "resolved": "https://registry.npmjs.org/@putout/minify/-/minify-4.5.0.tgz", 515 | "integrity": "sha512-fiFAtRj1UNYbw0ePdVZl0paiSYBPLwrYRaaNBFPpdTwJCX4XmPIkxeQTbs42mHPQ8eDdgIwXL5Fhv8AxtS2L0A==", 516 | "dev": true, 517 | "license": "MIT", 518 | "engines": { 519 | "node": ">=18" 520 | } 521 | }, 522 | "node_modules/@swc/core": { 523 | "version": "1.7.26", 524 | "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.7.26.tgz", 525 | "integrity": "sha512-f5uYFf+TmMQyYIoxkn/evWhNGuUzC730dFwAKGwBVHHVoPyak1/GvJUm6i1SKl+2Hrj9oN0i3WSoWWZ4pgI8lw==", 526 | "dev": true, 527 | "hasInstallScript": true, 528 | "license": "Apache-2.0", 529 | "dependencies": { 530 | "@swc/counter": "^0.1.3", 531 | "@swc/types": "^0.1.12" 532 | }, 533 | "engines": { 534 | "node": ">=10" 535 | }, 536 | "funding": { 537 | "type": "opencollective", 538 | "url": "https://opencollective.com/swc" 539 | }, 540 | "optionalDependencies": { 541 | "@swc/core-darwin-arm64": "1.7.26", 542 | "@swc/core-darwin-x64": "1.7.26", 543 | "@swc/core-linux-arm-gnueabihf": "1.7.26", 544 | "@swc/core-linux-arm64-gnu": "1.7.26", 545 | "@swc/core-linux-arm64-musl": "1.7.26", 546 | "@swc/core-linux-x64-gnu": "1.7.26", 547 | "@swc/core-linux-x64-musl": "1.7.26", 548 | "@swc/core-win32-arm64-msvc": "1.7.26", 549 | "@swc/core-win32-ia32-msvc": "1.7.26", 550 | "@swc/core-win32-x64-msvc": "1.7.26" 551 | }, 552 | "peerDependencies": { 553 | "@swc/helpers": "*" 554 | }, 555 | "peerDependenciesMeta": { 556 | "@swc/helpers": { 557 | "optional": true 558 | } 559 | } 560 | }, 561 | "node_modules/@swc/core-darwin-arm64": { 562 | "version": "1.7.26", 563 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.26.tgz", 564 | "integrity": "sha512-FF3CRYTg6a7ZVW4yT9mesxoVVZTrcSWtmZhxKCYJX9brH4CS/7PRPjAKNk6kzWgWuRoglP7hkjQcd6EpMcZEAw==", 565 | "cpu": [ 566 | "arm64" 567 | ], 568 | "dev": true, 569 | "license": "Apache-2.0 AND MIT", 570 | "optional": true, 571 | "os": [ 572 | "darwin" 573 | ], 574 | "engines": { 575 | "node": ">=10" 576 | } 577 | }, 578 | "node_modules/@swc/core-darwin-x64": { 579 | "version": "1.7.26", 580 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.7.26.tgz", 581 | "integrity": "sha512-az3cibZdsay2HNKmc4bjf62QVukuiMRh5sfM5kHR/JMTrLyS6vSw7Ihs3UTkZjUxkLTT8ro54LI6sV6sUQUbLQ==", 582 | "cpu": [ 583 | "x64" 584 | ], 585 | "dev": true, 586 | "license": "Apache-2.0 AND MIT", 587 | "optional": true, 588 | "os": [ 589 | "darwin" 590 | ], 591 | "engines": { 592 | "node": ">=10" 593 | } 594 | }, 595 | "node_modules/@swc/core-linux-arm-gnueabihf": { 596 | "version": "1.7.26", 597 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.26.tgz", 598 | "integrity": "sha512-VYPFVJDO5zT5U3RpCdHE5v1gz4mmR8BfHecUZTmD2v1JeFY6fv9KArJUpjrHEEsjK/ucXkQFmJ0jaiWXmpOV9Q==", 599 | "cpu": [ 600 | "arm" 601 | ], 602 | "dev": true, 603 | "license": "Apache-2.0", 604 | "optional": true, 605 | "os": [ 606 | "linux" 607 | ], 608 | "engines": { 609 | "node": ">=10" 610 | } 611 | }, 612 | "node_modules/@swc/core-linux-arm64-gnu": { 613 | "version": "1.7.26", 614 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.26.tgz", 615 | "integrity": "sha512-YKevOV7abpjcAzXrhsl+W48Z9mZvgoVs2eP5nY+uoMAdP2b3GxC0Df1Co0I90o2lkzO4jYBpTMcZlmUXLdXn+Q==", 616 | "cpu": [ 617 | "arm64" 618 | ], 619 | "dev": true, 620 | "license": "Apache-2.0 AND MIT", 621 | "optional": true, 622 | "os": [ 623 | "linux" 624 | ], 625 | "engines": { 626 | "node": ">=10" 627 | } 628 | }, 629 | "node_modules/@swc/core-linux-arm64-musl": { 630 | "version": "1.7.26", 631 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.26.tgz", 632 | "integrity": "sha512-3w8iZICMkQQON0uIcvz7+Q1MPOW6hJ4O5ETjA0LSP/tuKqx30hIniCGOgPDnv3UTMruLUnQbtBwVCZTBKR3Rkg==", 633 | "cpu": [ 634 | "arm64" 635 | ], 636 | "dev": true, 637 | "license": "Apache-2.0 AND MIT", 638 | "optional": true, 639 | "os": [ 640 | "linux" 641 | ], 642 | "engines": { 643 | "node": ">=10" 644 | } 645 | }, 646 | "node_modules/@swc/core-linux-x64-gnu": { 647 | "version": "1.7.26", 648 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.26.tgz", 649 | "integrity": "sha512-c+pp9Zkk2lqb06bNGkR2Looxrs7FtGDMA4/aHjZcCqATgp348hOKH5WPvNLBl+yPrISuWjbKDVn3NgAvfvpH4w==", 650 | "cpu": [ 651 | "x64" 652 | ], 653 | "dev": true, 654 | "license": "Apache-2.0 AND MIT", 655 | "optional": true, 656 | "os": [ 657 | "linux" 658 | ], 659 | "engines": { 660 | "node": ">=10" 661 | } 662 | }, 663 | "node_modules/@swc/core-linux-x64-musl": { 664 | "version": "1.7.26", 665 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.26.tgz", 666 | "integrity": "sha512-PgtyfHBF6xG87dUSSdTJHwZ3/8vWZfNIXQV2GlwEpslrOkGqy+WaiiyE7Of7z9AvDILfBBBcJvJ/r8u980wAfQ==", 667 | "cpu": [ 668 | "x64" 669 | ], 670 | "dev": true, 671 | "license": "Apache-2.0 AND MIT", 672 | "optional": true, 673 | "os": [ 674 | "linux" 675 | ], 676 | "engines": { 677 | "node": ">=10" 678 | } 679 | }, 680 | "node_modules/@swc/core-win32-arm64-msvc": { 681 | "version": "1.7.26", 682 | "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.26.tgz", 683 | "integrity": "sha512-9TNXPIJqFynlAOrRD6tUQjMq7KApSklK3R/tXgIxc7Qx+lWu8hlDQ/kVPLpU7PWvMMwC/3hKBW+p5f+Tms1hmA==", 684 | "cpu": [ 685 | "arm64" 686 | ], 687 | "dev": true, 688 | "license": "Apache-2.0 AND MIT", 689 | "optional": true, 690 | "os": [ 691 | "win32" 692 | ], 693 | "engines": { 694 | "node": ">=10" 695 | } 696 | }, 697 | "node_modules/@swc/core-win32-ia32-msvc": { 698 | "version": "1.7.26", 699 | "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.26.tgz", 700 | "integrity": "sha512-9YngxNcG3177GYdsTum4V98Re+TlCeJEP4kEwEg9EagT5s3YejYdKwVAkAsJszzkXuyRDdnHUpYbTrPG6FiXrQ==", 701 | "cpu": [ 702 | "ia32" 703 | ], 704 | "dev": true, 705 | "license": "Apache-2.0 AND MIT", 706 | "optional": true, 707 | "os": [ 708 | "win32" 709 | ], 710 | "engines": { 711 | "node": ">=10" 712 | } 713 | }, 714 | "node_modules/@swc/core-win32-x64-msvc": { 715 | "version": "1.7.26", 716 | "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.26.tgz", 717 | "integrity": "sha512-VR+hzg9XqucgLjXxA13MtV5O3C0bK0ywtLIBw/+a+O+Oc6mxFWHtdUeXDbIi5AiPbn0fjgVJMqYnyjGyyX8u0w==", 718 | "cpu": [ 719 | "x64" 720 | ], 721 | "dev": true, 722 | "license": "Apache-2.0 AND MIT", 723 | "optional": true, 724 | "os": [ 725 | "win32" 726 | ], 727 | "engines": { 728 | "node": ">=10" 729 | } 730 | }, 731 | "node_modules/@swc/counter": { 732 | "version": "0.1.3", 733 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", 734 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", 735 | "dev": true, 736 | "license": "Apache-2.0" 737 | }, 738 | "node_modules/@swc/types": { 739 | "version": "0.1.12", 740 | "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.12.tgz", 741 | "integrity": "sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==", 742 | "dev": true, 743 | "license": "Apache-2.0", 744 | "dependencies": { 745 | "@swc/counter": "^0.1.3" 746 | } 747 | }, 748 | "node_modules/acorn": { 749 | "version": "1.2.2", 750 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz", 751 | "integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ=", 752 | "dev": true, 753 | "bin": { 754 | "acorn": "bin/acorn" 755 | }, 756 | "engines": { 757 | "node": ">=0.4.0" 758 | } 759 | }, 760 | "node_modules/ajv": { 761 | "version": "6.12.6", 762 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 763 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 764 | "dev": true, 765 | "dependencies": { 766 | "fast-deep-equal": "^3.1.1", 767 | "fast-json-stable-stringify": "^2.0.0", 768 | "json-schema-traverse": "^0.4.1", 769 | "uri-js": "^4.2.2" 770 | }, 771 | "funding": { 772 | "type": "github", 773 | "url": "https://github.com/sponsors/epoberezkin" 774 | } 775 | }, 776 | "node_modules/ansi-colors": { 777 | "version": "4.1.3", 778 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", 779 | "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", 780 | "dev": true, 781 | "license": "MIT", 782 | "engines": { 783 | "node": ">=6" 784 | } 785 | }, 786 | "node_modules/ansi-styles": { 787 | "version": "4.3.0", 788 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 789 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 790 | "dev": true, 791 | "dependencies": { 792 | "color-convert": "^2.0.1" 793 | }, 794 | "engines": { 795 | "node": ">=8" 796 | }, 797 | "funding": { 798 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 799 | } 800 | }, 801 | "node_modules/anymatch": { 802 | "version": "3.1.3", 803 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 804 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 805 | "dev": true, 806 | "license": "ISC", 807 | "dependencies": { 808 | "normalize-path": "^3.0.0", 809 | "picomatch": "^2.0.4" 810 | }, 811 | "engines": { 812 | "node": ">= 8" 813 | } 814 | }, 815 | "node_modules/argparse": { 816 | "version": "2.0.1", 817 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 818 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 819 | "dev": true, 820 | "license": "Python-2.0" 821 | }, 822 | "node_modules/asn1": { 823 | "version": "0.2.4", 824 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 825 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 826 | "dev": true, 827 | "dependencies": { 828 | "safer-buffer": "~2.1.0" 829 | } 830 | }, 831 | "node_modules/assert-plus": { 832 | "version": "1.0.0", 833 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 834 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", 835 | "dev": true, 836 | "engines": { 837 | "node": ">=0.8" 838 | } 839 | }, 840 | "node_modules/assertion-error": { 841 | "version": "1.1.0", 842 | "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", 843 | "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", 844 | "dev": true, 845 | "engines": { 846 | "node": "*" 847 | } 848 | }, 849 | "node_modules/async": { 850 | "version": "1.5.2", 851 | "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", 852 | "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", 853 | "dev": true, 854 | "license": "MIT" 855 | }, 856 | "node_modules/asynckit": { 857 | "version": "0.4.0", 858 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 859 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", 860 | "dev": true 861 | }, 862 | "node_modules/aws-sign2": { 863 | "version": "0.7.0", 864 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 865 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", 866 | "dev": true, 867 | "engines": { 868 | "node": "*" 869 | } 870 | }, 871 | "node_modules/aws4": { 872 | "version": "1.11.0", 873 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 874 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", 875 | "dev": true 876 | }, 877 | "node_modules/balanced-match": { 878 | "version": "1.0.2", 879 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 880 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 881 | "dev": true, 882 | "license": "MIT" 883 | }, 884 | "node_modules/bcrypt-pbkdf": { 885 | "version": "1.0.2", 886 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 887 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 888 | "dev": true, 889 | "dependencies": { 890 | "tweetnacl": "^0.14.3" 891 | } 892 | }, 893 | "node_modules/benchee": { 894 | "version": "1.1.0", 895 | "resolved": "https://registry.npmjs.org/benchee/-/benchee-1.1.0.tgz", 896 | "integrity": "sha512-7sW2KJPD+e5HgsuHXbpDwfI1kThRmXsuFbCk0eNWX6tstW/fJWryTL7v9+b24VnyqNwLN4SspckMxNGzEguLBw==", 897 | "dev": true 898 | }, 899 | "node_modules/benchtest": { 900 | "version": "2.0.7", 901 | "resolved": "https://registry.npmjs.org/benchtest/-/benchtest-2.0.7.tgz", 902 | "integrity": "sha512-7AVlK+EMgprCdhmxQ9VD6VjHk0rEXE5oGwtdwx0yXuzn1a8pSMxd5n/4Q+dvWeZx2HB5XtDDAKdbEEZSIG4mtQ==", 903 | "dev": true, 904 | "dependencies": { 905 | "performance-now": "^2.1.0" 906 | } 907 | }, 908 | "node_modules/binary-extensions": { 909 | "version": "2.3.0", 910 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 911 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 912 | "dev": true, 913 | "license": "MIT", 914 | "engines": { 915 | "node": ">=8" 916 | }, 917 | "funding": { 918 | "url": "https://github.com/sponsors/sindresorhus" 919 | } 920 | }, 921 | "node_modules/blanket": { 922 | "version": "1.2.3", 923 | "resolved": "https://registry.npmjs.org/blanket/-/blanket-1.2.3.tgz", 924 | "integrity": "sha1-FRtJh8O9hFUrtfA7kO9fflkx5HM=", 925 | "dev": true, 926 | "dependencies": { 927 | "acorn": "^1.0.3", 928 | "falafel": "~1.2.0", 929 | "foreach": "^2.0.5", 930 | "isarray": "0.0.1", 931 | "object-keys": "^1.0.6", 932 | "xtend": "~4.0.0" 933 | }, 934 | "engines": { 935 | "node": ">=0.10.7" 936 | } 937 | }, 938 | "node_modules/bluebird": { 939 | "version": "3.7.2", 940 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 941 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", 942 | "dev": true, 943 | "license": "MIT" 944 | }, 945 | "node_modules/brace-expansion": { 946 | "version": "2.0.1", 947 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 948 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 949 | "dev": true, 950 | "license": "MIT", 951 | "dependencies": { 952 | "balanced-match": "^1.0.0" 953 | } 954 | }, 955 | "node_modules/braces": { 956 | "version": "3.0.3", 957 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 958 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 959 | "dev": true, 960 | "license": "MIT", 961 | "dependencies": { 962 | "fill-range": "^7.1.1" 963 | }, 964 | "engines": { 965 | "node": ">=8" 966 | } 967 | }, 968 | "node_modules/browser-stdout": { 969 | "version": "1.3.1", 970 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 971 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 972 | "dev": true 973 | }, 974 | "node_modules/buffer-from": { 975 | "version": "1.1.2", 976 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 977 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 978 | "dev": true, 979 | "license": "MIT" 980 | }, 981 | "node_modules/camel-case": { 982 | "version": "4.1.2", 983 | "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", 984 | "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", 985 | "dev": true, 986 | "license": "MIT", 987 | "dependencies": { 988 | "pascal-case": "^3.1.2", 989 | "tslib": "^2.0.3" 990 | } 991 | }, 992 | "node_modules/caseless": { 993 | "version": "0.12.0", 994 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 995 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", 996 | "dev": true 997 | }, 998 | "node_modules/chai": { 999 | "version": "4.2.0", 1000 | "resolved": "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz", 1001 | "integrity": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==", 1002 | "dev": true, 1003 | "dependencies": { 1004 | "assertion-error": "^1.1.0", 1005 | "check-error": "^1.0.2", 1006 | "deep-eql": "^3.0.1", 1007 | "get-func-name": "^2.0.0", 1008 | "pathval": "^1.1.0", 1009 | "type-detect": "^4.0.5" 1010 | }, 1011 | "engines": { 1012 | "node": ">=4" 1013 | } 1014 | }, 1015 | "node_modules/chalk": { 1016 | "version": "4.1.2", 1017 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1018 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1019 | "dev": true, 1020 | "license": "MIT", 1021 | "dependencies": { 1022 | "ansi-styles": "^4.1.0", 1023 | "supports-color": "^7.1.0" 1024 | }, 1025 | "engines": { 1026 | "node": ">=10" 1027 | }, 1028 | "funding": { 1029 | "url": "https://github.com/chalk/chalk?sponsor=1" 1030 | } 1031 | }, 1032 | "node_modules/check-error": { 1033 | "version": "1.0.2", 1034 | "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", 1035 | "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", 1036 | "dev": true, 1037 | "engines": { 1038 | "node": "*" 1039 | } 1040 | }, 1041 | "node_modules/chokidar": { 1042 | "version": "3.6.0", 1043 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1044 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1045 | "dev": true, 1046 | "license": "MIT", 1047 | "dependencies": { 1048 | "anymatch": "~3.1.2", 1049 | "braces": "~3.0.2", 1050 | "glob-parent": "~5.1.2", 1051 | "is-binary-path": "~2.1.0", 1052 | "is-glob": "~4.0.1", 1053 | "normalize-path": "~3.0.0", 1054 | "readdirp": "~3.6.0" 1055 | }, 1056 | "engines": { 1057 | "node": ">= 8.10.0" 1058 | }, 1059 | "funding": { 1060 | "url": "https://paulmillr.com/funding/" 1061 | }, 1062 | "optionalDependencies": { 1063 | "fsevents": "~2.3.2" 1064 | } 1065 | }, 1066 | "node_modules/clean-css": { 1067 | "version": "5.3.3", 1068 | "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", 1069 | "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", 1070 | "dev": true, 1071 | "license": "MIT", 1072 | "dependencies": { 1073 | "source-map": "~0.6.0" 1074 | }, 1075 | "engines": { 1076 | "node": ">= 10.0" 1077 | } 1078 | }, 1079 | "node_modules/cli-table2": { 1080 | "version": "0.2.0", 1081 | "resolved": "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz", 1082 | "integrity": "sha512-rNig1Ons+B0eTcophmN0nlbsROa7B3+Yfo1J3leU56awc8IuKDW3MLMv9gayl4zUnYaLGg8CrecKso+hSmUvUw==", 1083 | "dev": true, 1084 | "license": "MIT", 1085 | "dependencies": { 1086 | "lodash": "^3.10.1", 1087 | "string-width": "^1.0.1" 1088 | }, 1089 | "optionalDependencies": { 1090 | "colors": "^1.1.2" 1091 | } 1092 | }, 1093 | "node_modules/cli-table2/node_modules/ansi-regex": { 1094 | "version": "2.1.1", 1095 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 1096 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", 1097 | "dev": true, 1098 | "engines": { 1099 | "node": ">=0.10.0" 1100 | } 1101 | }, 1102 | "node_modules/cli-table2/node_modules/is-fullwidth-code-point": { 1103 | "version": "1.0.0", 1104 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 1105 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 1106 | "dev": true, 1107 | "dependencies": { 1108 | "number-is-nan": "^1.0.0" 1109 | }, 1110 | "engines": { 1111 | "node": ">=0.10.0" 1112 | } 1113 | }, 1114 | "node_modules/cli-table2/node_modules/lodash": { 1115 | "version": "3.10.1", 1116 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", 1117 | "integrity": "sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==", 1118 | "dev": true, 1119 | "license": "MIT" 1120 | }, 1121 | "node_modules/cli-table2/node_modules/string-width": { 1122 | "version": "1.0.2", 1123 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 1124 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 1125 | "dev": true, 1126 | "dependencies": { 1127 | "code-point-at": "^1.0.0", 1128 | "is-fullwidth-code-point": "^1.0.0", 1129 | "strip-ansi": "^3.0.0" 1130 | }, 1131 | "engines": { 1132 | "node": ">=0.10.0" 1133 | } 1134 | }, 1135 | "node_modules/cli-table2/node_modules/strip-ansi": { 1136 | "version": "3.0.1", 1137 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 1138 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 1139 | "dev": true, 1140 | "dependencies": { 1141 | "ansi-regex": "^2.0.0" 1142 | }, 1143 | "engines": { 1144 | "node": ">=0.10.0" 1145 | } 1146 | }, 1147 | "node_modules/cliui": { 1148 | "version": "7.0.4", 1149 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 1150 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 1151 | "dev": true, 1152 | "license": "ISC", 1153 | "dependencies": { 1154 | "string-width": "^4.2.0", 1155 | "strip-ansi": "^6.0.0", 1156 | "wrap-ansi": "^7.0.0" 1157 | } 1158 | }, 1159 | "node_modules/cliui/node_modules/ansi-regex": { 1160 | "version": "5.0.1", 1161 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1162 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1163 | "dev": true, 1164 | "license": "MIT", 1165 | "engines": { 1166 | "node": ">=8" 1167 | } 1168 | }, 1169 | "node_modules/cliui/node_modules/is-fullwidth-code-point": { 1170 | "version": "3.0.0", 1171 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1172 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1173 | "dev": true, 1174 | "license": "MIT", 1175 | "engines": { 1176 | "node": ">=8" 1177 | } 1178 | }, 1179 | "node_modules/cliui/node_modules/string-width": { 1180 | "version": "4.2.3", 1181 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1182 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1183 | "dev": true, 1184 | "license": "MIT", 1185 | "dependencies": { 1186 | "emoji-regex": "^8.0.0", 1187 | "is-fullwidth-code-point": "^3.0.0", 1188 | "strip-ansi": "^6.0.1" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | } 1193 | }, 1194 | "node_modules/cliui/node_modules/strip-ansi": { 1195 | "version": "6.0.1", 1196 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1197 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1198 | "dev": true, 1199 | "license": "MIT", 1200 | "dependencies": { 1201 | "ansi-regex": "^5.0.1" 1202 | }, 1203 | "engines": { 1204 | "node": ">=8" 1205 | } 1206 | }, 1207 | "node_modules/clone": { 1208 | "version": "2.1.2", 1209 | "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 1210 | "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", 1211 | "dev": true, 1212 | "engines": { 1213 | "node": ">=0.8" 1214 | } 1215 | }, 1216 | "node_modules/codacy-coverage": { 1217 | "version": "2.1.1", 1218 | "resolved": "https://registry.npmjs.org/codacy-coverage/-/codacy-coverage-2.1.1.tgz", 1219 | "integrity": "sha512-MGMkPS5d9AqQEXTZ4grn/syl/7VvOehgWTeU2B41E22q767QolclfdfadKAndL287cIPEOEdwh9JBqCwQJLtFw==", 1220 | "deprecated": "Package being deprecated in favor of https://github.com/codacy/codacy-coverage-reporter", 1221 | "dev": true, 1222 | "license": "MIT", 1223 | "dependencies": { 1224 | "bluebird": "^3.5.x", 1225 | "commander": "^2.x", 1226 | "joi": "^12.x", 1227 | "lcov-parse": "^1.x", 1228 | "lodash": "^4.17.4", 1229 | "log-driver": "^1.x", 1230 | "request": "^2.83.0", 1231 | "request-promise": "^4.x" 1232 | }, 1233 | "bin": { 1234 | "codacy-coverage": "bin/codacy-coverage.js" 1235 | }, 1236 | "engines": { 1237 | "node": ">= 4.0.0" 1238 | } 1239 | }, 1240 | "node_modules/codacy-coverage/node_modules/lcov-parse": { 1241 | "version": "1.0.0", 1242 | "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz", 1243 | "integrity": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==", 1244 | "dev": true, 1245 | "license": "BSD-3-Clause", 1246 | "bin": { 1247 | "lcov-parse": "bin/cli.js" 1248 | } 1249 | }, 1250 | "node_modules/code-point-at": { 1251 | "version": "1.1.0", 1252 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 1253 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", 1254 | "dev": true, 1255 | "engines": { 1256 | "node": ">=0.10.0" 1257 | } 1258 | }, 1259 | "node_modules/codeclimate-test-reporter": { 1260 | "version": "0.5.1", 1261 | "resolved": "https://registry.npmjs.org/codeclimate-test-reporter/-/codeclimate-test-reporter-0.5.1.tgz", 1262 | "integrity": "sha512-XCzmc8dH+R4orK11BCg5pBbXc35abxq9sept4YvUFRkFl9zb9MIVRrCKENe6U1TKAMTgvGJmrYyHn0y2lerpmg==", 1263 | "deprecated": "codeclimate-test-reporter has been deprecated in favor of our new unified test-reporter. Please visit https://docs.codeclimate.com/docs/configuring-test-coverage for details on setting up the new test-reporter.", 1264 | "dev": true, 1265 | "license": "MIT", 1266 | "dependencies": { 1267 | "async": "~1.5.2", 1268 | "commander": "2.9.0", 1269 | "lcov-parse": "0.0.10", 1270 | "request": "~2.88.0" 1271 | }, 1272 | "bin": { 1273 | "codeclimate-test-reporter": "bin/codeclimate.js" 1274 | }, 1275 | "engines": { 1276 | "node": ">= 4" 1277 | } 1278 | }, 1279 | "node_modules/codeclimate-test-reporter/node_modules/commander": { 1280 | "version": "2.9.0", 1281 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", 1282 | "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", 1283 | "dev": true, 1284 | "license": "MIT", 1285 | "dependencies": { 1286 | "graceful-readlink": ">= 1.0.0" 1287 | }, 1288 | "engines": { 1289 | "node": ">= 0.6.x" 1290 | } 1291 | }, 1292 | "node_modules/color-convert": { 1293 | "version": "2.0.1", 1294 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1295 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1296 | "dev": true, 1297 | "dependencies": { 1298 | "color-name": "~1.1.4" 1299 | }, 1300 | "engines": { 1301 | "node": ">=7.0.0" 1302 | } 1303 | }, 1304 | "node_modules/color-name": { 1305 | "version": "1.1.4", 1306 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1307 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1308 | "dev": true 1309 | }, 1310 | "node_modules/colors": { 1311 | "version": "1.4.0", 1312 | "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", 1313 | "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", 1314 | "dev": true, 1315 | "optional": true, 1316 | "engines": { 1317 | "node": ">=0.1.90" 1318 | } 1319 | }, 1320 | "node_modules/combined-stream": { 1321 | "version": "1.0.8", 1322 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1323 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1324 | "dev": true, 1325 | "dependencies": { 1326 | "delayed-stream": "~1.0.0" 1327 | }, 1328 | "engines": { 1329 | "node": ">= 0.8" 1330 | } 1331 | }, 1332 | "node_modules/commander": { 1333 | "version": "2.20.3", 1334 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 1335 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 1336 | "dev": true 1337 | }, 1338 | "node_modules/core-util-is": { 1339 | "version": "1.0.2", 1340 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 1341 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", 1342 | "dev": true 1343 | }, 1344 | "node_modules/css-b64-images": { 1345 | "version": "0.2.5", 1346 | "resolved": "https://registry.npmjs.org/css-b64-images/-/css-b64-images-0.2.5.tgz", 1347 | "integrity": "sha512-TgQBEdP07adhrDfXvI5o6bHGukKBNMzp2Ngckc/6d09zpjD2gc1Hl3Ca1CKgb8FXjHi88+Phv2Uegs2kTL4zjg==", 1348 | "dev": true, 1349 | "bin": { 1350 | "css-b64-images": "bin/css-b64-images" 1351 | }, 1352 | "engines": { 1353 | "node": "*" 1354 | } 1355 | }, 1356 | "node_modules/dashdash": { 1357 | "version": "1.14.1", 1358 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 1359 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 1360 | "dev": true, 1361 | "dependencies": { 1362 | "assert-plus": "^1.0.0" 1363 | }, 1364 | "engines": { 1365 | "node": ">=0.10" 1366 | } 1367 | }, 1368 | "node_modules/debug": { 1369 | "version": "4.3.7", 1370 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1371 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1372 | "dev": true, 1373 | "license": "MIT", 1374 | "dependencies": { 1375 | "ms": "^2.1.3" 1376 | }, 1377 | "engines": { 1378 | "node": ">=6.0" 1379 | }, 1380 | "peerDependenciesMeta": { 1381 | "supports-color": { 1382 | "optional": true 1383 | } 1384 | } 1385 | }, 1386 | "node_modules/deep-eql": { 1387 | "version": "3.0.1", 1388 | "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", 1389 | "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", 1390 | "dev": true, 1391 | "dependencies": { 1392 | "type-detect": "^4.0.0" 1393 | }, 1394 | "engines": { 1395 | "node": ">=0.12" 1396 | } 1397 | }, 1398 | "node_modules/deepclone": { 1399 | "version": "1.0.2", 1400 | "resolved": "https://registry.npmjs.org/deepclone/-/deepclone-1.0.2.tgz", 1401 | "integrity": "sha1-HzjsTZIUE0mX0D+Sx4VvqXRCu3Q=", 1402 | "dev": true 1403 | }, 1404 | "node_modules/delayed-stream": { 1405 | "version": "1.0.0", 1406 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1407 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", 1408 | "dev": true, 1409 | "engines": { 1410 | "node": ">=0.4.0" 1411 | } 1412 | }, 1413 | "node_modules/diff": { 1414 | "version": "5.2.0", 1415 | "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", 1416 | "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", 1417 | "dev": true, 1418 | "license": "BSD-3-Clause", 1419 | "engines": { 1420 | "node": ">=0.3.1" 1421 | } 1422 | }, 1423 | "node_modules/dot-case": { 1424 | "version": "3.0.4", 1425 | "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", 1426 | "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", 1427 | "dev": true, 1428 | "license": "MIT", 1429 | "dependencies": { 1430 | "no-case": "^3.0.4", 1431 | "tslib": "^2.0.3" 1432 | } 1433 | }, 1434 | "node_modules/ecc-jsbn": { 1435 | "version": "0.1.2", 1436 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 1437 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 1438 | "dev": true, 1439 | "dependencies": { 1440 | "jsbn": "~0.1.0", 1441 | "safer-buffer": "^2.1.0" 1442 | } 1443 | }, 1444 | "node_modules/emoji-regex": { 1445 | "version": "8.0.0", 1446 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1447 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1448 | "dev": true, 1449 | "license": "MIT" 1450 | }, 1451 | "node_modules/entities": { 1452 | "version": "4.5.0", 1453 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1454 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1455 | "dev": true, 1456 | "license": "BSD-2-Clause", 1457 | "engines": { 1458 | "node": ">=0.12" 1459 | }, 1460 | "funding": { 1461 | "url": "https://github.com/fb55/entities?sponsor=1" 1462 | } 1463 | }, 1464 | "node_modules/esbuild": { 1465 | "version": "0.23.1", 1466 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", 1467 | "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", 1468 | "dev": true, 1469 | "hasInstallScript": true, 1470 | "license": "MIT", 1471 | "bin": { 1472 | "esbuild": "bin/esbuild" 1473 | }, 1474 | "engines": { 1475 | "node": ">=18" 1476 | }, 1477 | "optionalDependencies": { 1478 | "@esbuild/aix-ppc64": "0.23.1", 1479 | "@esbuild/android-arm": "0.23.1", 1480 | "@esbuild/android-arm64": "0.23.1", 1481 | "@esbuild/android-x64": "0.23.1", 1482 | "@esbuild/darwin-arm64": "0.23.1", 1483 | "@esbuild/darwin-x64": "0.23.1", 1484 | "@esbuild/freebsd-arm64": "0.23.1", 1485 | "@esbuild/freebsd-x64": "0.23.1", 1486 | "@esbuild/linux-arm": "0.23.1", 1487 | "@esbuild/linux-arm64": "0.23.1", 1488 | "@esbuild/linux-ia32": "0.23.1", 1489 | "@esbuild/linux-loong64": "0.23.1", 1490 | "@esbuild/linux-mips64el": "0.23.1", 1491 | "@esbuild/linux-ppc64": "0.23.1", 1492 | "@esbuild/linux-riscv64": "0.23.1", 1493 | "@esbuild/linux-s390x": "0.23.1", 1494 | "@esbuild/linux-x64": "0.23.1", 1495 | "@esbuild/netbsd-x64": "0.23.1", 1496 | "@esbuild/openbsd-arm64": "0.23.1", 1497 | "@esbuild/openbsd-x64": "0.23.1", 1498 | "@esbuild/sunos-x64": "0.23.1", 1499 | "@esbuild/win32-arm64": "0.23.1", 1500 | "@esbuild/win32-ia32": "0.23.1", 1501 | "@esbuild/win32-x64": "0.23.1" 1502 | } 1503 | }, 1504 | "node_modules/escalade": { 1505 | "version": "3.2.0", 1506 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1507 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1508 | "dev": true, 1509 | "license": "MIT", 1510 | "engines": { 1511 | "node": ">=6" 1512 | } 1513 | }, 1514 | "node_modules/extend": { 1515 | "version": "3.0.2", 1516 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1517 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 1518 | "dev": true 1519 | }, 1520 | "node_modules/extsprintf": { 1521 | "version": "1.3.0", 1522 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 1523 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", 1524 | "dev": true, 1525 | "engines": [ 1526 | "node >=0.6.0" 1527 | ] 1528 | }, 1529 | "node_modules/falafel": { 1530 | "version": "1.2.0", 1531 | "resolved": "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz", 1532 | "integrity": "sha1-wY0k71CRF0pJfzGM0ksCaiXN2rQ=", 1533 | "dev": true, 1534 | "dependencies": { 1535 | "acorn": "^1.0.3", 1536 | "foreach": "^2.0.5", 1537 | "isarray": "0.0.1", 1538 | "object-keys": "^1.0.6" 1539 | }, 1540 | "engines": { 1541 | "node": ">=0.4.0" 1542 | } 1543 | }, 1544 | "node_modules/fast-clone": { 1545 | "version": "1.5.13", 1546 | "resolved": "https://registry.npmjs.org/fast-clone/-/fast-clone-1.5.13.tgz", 1547 | "integrity": "sha512-0ez7coyFBQFjZtId+RJqJ+EQs61w9xARfqjqK0AD9vIUkSxWD4HvPt80+5evebZ1tTnv1GYKrPTipx7kOW5ipA==", 1548 | "dev": true 1549 | }, 1550 | "node_modules/fast-copy": { 1551 | "version": "2.1.0", 1552 | "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-2.1.0.tgz", 1553 | "integrity": "sha512-j4VxAVJsu9NHveYrIj0+nJxXe2lOlibKTlyy0jH8DBwcuV6QyXTy0zTqZhmMKo7EYvuaUk/BFj/o6NU6grE5ag==", 1554 | "dev": true 1555 | }, 1556 | "node_modules/fast-deep-equal": { 1557 | "version": "3.1.3", 1558 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1559 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1560 | "dev": true 1561 | }, 1562 | "node_modules/fast-json-stable-stringify": { 1563 | "version": "2.1.0", 1564 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1565 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1566 | "dev": true 1567 | }, 1568 | "node_modules/fill-range": { 1569 | "version": "7.1.1", 1570 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1571 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1572 | "dev": true, 1573 | "license": "MIT", 1574 | "dependencies": { 1575 | "to-regex-range": "^5.0.1" 1576 | }, 1577 | "engines": { 1578 | "node": ">=8" 1579 | } 1580 | }, 1581 | "node_modules/find-up": { 1582 | "version": "5.0.0", 1583 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1584 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1585 | "dev": true, 1586 | "dependencies": { 1587 | "locate-path": "^6.0.0", 1588 | "path-exists": "^4.0.0" 1589 | }, 1590 | "engines": { 1591 | "node": ">=10" 1592 | }, 1593 | "funding": { 1594 | "url": "https://github.com/sponsors/sindresorhus" 1595 | } 1596 | }, 1597 | "node_modules/flat": { 1598 | "version": "5.0.2", 1599 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 1600 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 1601 | "dev": true, 1602 | "bin": { 1603 | "flat": "cli.js" 1604 | } 1605 | }, 1606 | "node_modules/foreach": { 1607 | "version": "2.0.5", 1608 | "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", 1609 | "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", 1610 | "dev": true 1611 | }, 1612 | "node_modules/forever-agent": { 1613 | "version": "0.6.1", 1614 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 1615 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", 1616 | "dev": true, 1617 | "engines": { 1618 | "node": "*" 1619 | } 1620 | }, 1621 | "node_modules/form-data": { 1622 | "version": "2.3.3", 1623 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 1624 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 1625 | "dev": true, 1626 | "dependencies": { 1627 | "asynckit": "^0.4.0", 1628 | "combined-stream": "^1.0.6", 1629 | "mime-types": "^2.1.12" 1630 | }, 1631 | "engines": { 1632 | "node": ">= 0.12" 1633 | } 1634 | }, 1635 | "node_modules/fs.realpath": { 1636 | "version": "1.0.0", 1637 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1638 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1639 | "dev": true, 1640 | "license": "ISC" 1641 | }, 1642 | "node_modules/fsevents": { 1643 | "version": "2.3.3", 1644 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1645 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1646 | "dev": true, 1647 | "hasInstallScript": true, 1648 | "license": "MIT", 1649 | "optional": true, 1650 | "os": [ 1651 | "darwin" 1652 | ], 1653 | "engines": { 1654 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1655 | } 1656 | }, 1657 | "node_modules/get-caller-file": { 1658 | "version": "2.0.5", 1659 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1660 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1661 | "dev": true, 1662 | "license": "ISC", 1663 | "engines": { 1664 | "node": "6.* || 8.* || >= 10.*" 1665 | } 1666 | }, 1667 | "node_modules/get-func-name": { 1668 | "version": "2.0.2", 1669 | "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", 1670 | "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", 1671 | "dev": true, 1672 | "license": "MIT", 1673 | "engines": { 1674 | "node": "*" 1675 | } 1676 | }, 1677 | "node_modules/getpass": { 1678 | "version": "0.1.7", 1679 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 1680 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 1681 | "dev": true, 1682 | "dependencies": { 1683 | "assert-plus": "^1.0.0" 1684 | } 1685 | }, 1686 | "node_modules/glob": { 1687 | "version": "8.1.0", 1688 | "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 1689 | "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 1690 | "deprecated": "Glob versions prior to v9 are no longer supported", 1691 | "dev": true, 1692 | "license": "ISC", 1693 | "dependencies": { 1694 | "fs.realpath": "^1.0.0", 1695 | "inflight": "^1.0.4", 1696 | "inherits": "2", 1697 | "minimatch": "^5.0.1", 1698 | "once": "^1.3.0" 1699 | }, 1700 | "engines": { 1701 | "node": ">=12" 1702 | }, 1703 | "funding": { 1704 | "url": "https://github.com/sponsors/isaacs" 1705 | } 1706 | }, 1707 | "node_modules/glob-parent": { 1708 | "version": "5.1.2", 1709 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1710 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1711 | "dev": true, 1712 | "license": "ISC", 1713 | "dependencies": { 1714 | "is-glob": "^4.0.1" 1715 | }, 1716 | "engines": { 1717 | "node": ">= 6" 1718 | } 1719 | }, 1720 | "node_modules/graceful-readlink": { 1721 | "version": "1.0.1", 1722 | "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", 1723 | "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", 1724 | "dev": true, 1725 | "license": "MIT" 1726 | }, 1727 | "node_modules/har-schema": { 1728 | "version": "2.0.0", 1729 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 1730 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", 1731 | "dev": true, 1732 | "engines": { 1733 | "node": ">=4" 1734 | } 1735 | }, 1736 | "node_modules/har-validator": { 1737 | "version": "5.1.5", 1738 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 1739 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 1740 | "deprecated": "this library is no longer supported", 1741 | "dev": true, 1742 | "dependencies": { 1743 | "ajv": "^6.12.3", 1744 | "har-schema": "^2.0.0" 1745 | }, 1746 | "engines": { 1747 | "node": ">=6" 1748 | } 1749 | }, 1750 | "node_modules/has-flag": { 1751 | "version": "4.0.0", 1752 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1753 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1754 | "dev": true, 1755 | "license": "MIT", 1756 | "engines": { 1757 | "node": ">=8" 1758 | } 1759 | }, 1760 | "node_modules/hoek": { 1761 | "version": "4.3.1", 1762 | "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.3.1.tgz", 1763 | "integrity": "sha512-v7E+yIjcHECn973i0xHm4kJkEpv3C8sbYS4344WXbzYqRyiDD7rjnnKo4hsJkejQBAFdRMUGNHySeSPKSH9Rqw==", 1764 | "deprecated": "This module has moved and is now available at @hapi/hoek. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.", 1765 | "dev": true, 1766 | "license": "SEE LICENSE IN LICENSE.md", 1767 | "engines": { 1768 | "node": ">=6.0.0" 1769 | } 1770 | }, 1771 | "node_modules/html-minifier-terser": { 1772 | "version": "7.2.0", 1773 | "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", 1774 | "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", 1775 | "dev": true, 1776 | "license": "MIT", 1777 | "dependencies": { 1778 | "camel-case": "^4.1.2", 1779 | "clean-css": "~5.3.2", 1780 | "commander": "^10.0.0", 1781 | "entities": "^4.4.0", 1782 | "param-case": "^3.0.4", 1783 | "relateurl": "^0.2.7", 1784 | "terser": "^5.15.1" 1785 | }, 1786 | "bin": { 1787 | "html-minifier-terser": "cli.js" 1788 | }, 1789 | "engines": { 1790 | "node": "^14.13.1 || >=16.0.0" 1791 | } 1792 | }, 1793 | "node_modules/html-minifier-terser/node_modules/commander": { 1794 | "version": "10.0.1", 1795 | "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", 1796 | "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", 1797 | "dev": true, 1798 | "license": "MIT", 1799 | "engines": { 1800 | "node": ">=14" 1801 | } 1802 | }, 1803 | "node_modules/http-signature": { 1804 | "version": "1.2.0", 1805 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 1806 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 1807 | "dev": true, 1808 | "dependencies": { 1809 | "assert-plus": "^1.0.0", 1810 | "jsprim": "^1.2.2", 1811 | "sshpk": "^1.7.0" 1812 | }, 1813 | "engines": { 1814 | "node": ">=0.8", 1815 | "npm": ">=1.3.7" 1816 | } 1817 | }, 1818 | "node_modules/inflight": { 1819 | "version": "1.0.6", 1820 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1821 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1822 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1823 | "dev": true, 1824 | "license": "ISC", 1825 | "dependencies": { 1826 | "once": "^1.3.0", 1827 | "wrappy": "1" 1828 | } 1829 | }, 1830 | "node_modules/inherits": { 1831 | "version": "2.0.4", 1832 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1833 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1834 | "dev": true, 1835 | "license": "ISC" 1836 | }, 1837 | "node_modules/is-binary-path": { 1838 | "version": "2.1.0", 1839 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1840 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1841 | "dev": true, 1842 | "license": "MIT", 1843 | "dependencies": { 1844 | "binary-extensions": "^2.0.0" 1845 | }, 1846 | "engines": { 1847 | "node": ">=8" 1848 | } 1849 | }, 1850 | "node_modules/is-extglob": { 1851 | "version": "2.1.1", 1852 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1853 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1854 | "dev": true, 1855 | "license": "MIT", 1856 | "engines": { 1857 | "node": ">=0.10.0" 1858 | } 1859 | }, 1860 | "node_modules/is-glob": { 1861 | "version": "4.0.3", 1862 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1863 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1864 | "dev": true, 1865 | "license": "MIT", 1866 | "dependencies": { 1867 | "is-extglob": "^2.1.1" 1868 | }, 1869 | "engines": { 1870 | "node": ">=0.10.0" 1871 | } 1872 | }, 1873 | "node_modules/is-number": { 1874 | "version": "7.0.0", 1875 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1876 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1877 | "dev": true, 1878 | "license": "MIT", 1879 | "engines": { 1880 | "node": ">=0.12.0" 1881 | } 1882 | }, 1883 | "node_modules/is-plain-obj": { 1884 | "version": "2.1.0", 1885 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", 1886 | "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", 1887 | "dev": true, 1888 | "engines": { 1889 | "node": ">=8" 1890 | } 1891 | }, 1892 | "node_modules/is-typedarray": { 1893 | "version": "1.0.0", 1894 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 1895 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", 1896 | "dev": true 1897 | }, 1898 | "node_modules/is-unicode-supported": { 1899 | "version": "0.1.0", 1900 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", 1901 | "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", 1902 | "dev": true, 1903 | "license": "MIT", 1904 | "engines": { 1905 | "node": ">=10" 1906 | }, 1907 | "funding": { 1908 | "url": "https://github.com/sponsors/sindresorhus" 1909 | } 1910 | }, 1911 | "node_modules/isarray": { 1912 | "version": "0.0.1", 1913 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", 1914 | "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", 1915 | "dev": true 1916 | }, 1917 | "node_modules/isstream": { 1918 | "version": "0.1.2", 1919 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1920 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", 1921 | "dev": true 1922 | }, 1923 | "node_modules/jju": { 1924 | "version": "1.4.0", 1925 | "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", 1926 | "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", 1927 | "dev": true, 1928 | "license": "MIT" 1929 | }, 1930 | "node_modules/joi": { 1931 | "version": "12.1.1", 1932 | "resolved": "https://registry.npmjs.org/joi/-/joi-12.1.1.tgz", 1933 | "integrity": "sha512-Gh3iTjGLqGmQKTDuMFfsV7zT4uHtckqtrp88VFOc89V/sNtshOlAAtEkMM8TxJqRt1Cei00Hlh6/Bp7WjcqEEg==", 1934 | "deprecated": "Please update your dependencies as this version is no longer maintained and may contain bugs and security issues.", 1935 | "dev": true, 1936 | "license": "SEE LICENSE IN LICENSE.md", 1937 | "dependencies": { 1938 | "@hapi/address": "1.x.x", 1939 | "hoek": "4.x.x", 1940 | "topo": "2.x.x" 1941 | }, 1942 | "engines": { 1943 | "node": ">=6.0.0" 1944 | } 1945 | }, 1946 | "node_modules/js-yaml": { 1947 | "version": "4.1.0", 1948 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1949 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1950 | "dev": true, 1951 | "license": "MIT", 1952 | "dependencies": { 1953 | "argparse": "^2.0.1" 1954 | }, 1955 | "bin": { 1956 | "js-yaml": "bin/js-yaml.js" 1957 | } 1958 | }, 1959 | "node_modules/jsbn": { 1960 | "version": "0.1.1", 1961 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 1962 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", 1963 | "dev": true 1964 | }, 1965 | "node_modules/json-schema": { 1966 | "version": "0.4.0", 1967 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", 1968 | "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", 1969 | "dev": true, 1970 | "license": "(AFL-2.1 OR BSD-3-Clause)" 1971 | }, 1972 | "node_modules/json-schema-traverse": { 1973 | "version": "0.4.1", 1974 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1975 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1976 | "dev": true 1977 | }, 1978 | "node_modules/json-stringify-safe": { 1979 | "version": "5.0.1", 1980 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 1981 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", 1982 | "dev": true 1983 | }, 1984 | "node_modules/jsprim": { 1985 | "version": "1.4.2", 1986 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", 1987 | "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", 1988 | "dev": true, 1989 | "license": "MIT", 1990 | "dependencies": { 1991 | "assert-plus": "1.0.0", 1992 | "extsprintf": "1.3.0", 1993 | "json-schema": "0.4.0", 1994 | "verror": "1.10.0" 1995 | }, 1996 | "engines": { 1997 | "node": ">=0.6.0" 1998 | } 1999 | }, 2000 | "node_modules/lcov-parse": { 2001 | "version": "0.0.10", 2002 | "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz", 2003 | "integrity": "sha512-YsL0D4QF/vNlNcHPXM832si9d2ROryFQ4r4JvcfMIiUYr1f6WULuO75YCtxNu4P+XMRHz0SfUc524+c+U3G5kg==", 2004 | "dev": true, 2005 | "license": "BSD-3-Clause" 2006 | }, 2007 | "node_modules/locate-path": { 2008 | "version": "6.0.0", 2009 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2010 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2011 | "dev": true, 2012 | "dependencies": { 2013 | "p-locate": "^5.0.0" 2014 | }, 2015 | "engines": { 2016 | "node": ">=10" 2017 | }, 2018 | "funding": { 2019 | "url": "https://github.com/sponsors/sindresorhus" 2020 | } 2021 | }, 2022 | "node_modules/lodash": { 2023 | "version": "4.17.21", 2024 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2025 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2026 | "dev": true, 2027 | "license": "MIT" 2028 | }, 2029 | "node_modules/log-driver": { 2030 | "version": "1.2.7", 2031 | "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz", 2032 | "integrity": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==", 2033 | "dev": true, 2034 | "engines": { 2035 | "node": ">=0.8.6" 2036 | } 2037 | }, 2038 | "node_modules/log-symbols": { 2039 | "version": "4.1.0", 2040 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", 2041 | "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", 2042 | "dev": true, 2043 | "license": "MIT", 2044 | "dependencies": { 2045 | "chalk": "^4.1.0", 2046 | "is-unicode-supported": "^0.1.0" 2047 | }, 2048 | "engines": { 2049 | "node": ">=10" 2050 | }, 2051 | "funding": { 2052 | "url": "https://github.com/sponsors/sindresorhus" 2053 | } 2054 | }, 2055 | "node_modules/lower-case": { 2056 | "version": "2.0.2", 2057 | "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", 2058 | "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", 2059 | "dev": true, 2060 | "license": "MIT", 2061 | "dependencies": { 2062 | "tslib": "^2.0.3" 2063 | } 2064 | }, 2065 | "node_modules/mime-db": { 2066 | "version": "1.44.0", 2067 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", 2068 | "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", 2069 | "dev": true, 2070 | "engines": { 2071 | "node": ">= 0.6" 2072 | } 2073 | }, 2074 | "node_modules/mime-types": { 2075 | "version": "2.1.27", 2076 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", 2077 | "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", 2078 | "dev": true, 2079 | "dependencies": { 2080 | "mime-db": "1.44.0" 2081 | }, 2082 | "engines": { 2083 | "node": ">= 0.6" 2084 | } 2085 | }, 2086 | "node_modules/minify": { 2087 | "version": "11.4.0", 2088 | "resolved": "https://registry.npmjs.org/minify/-/minify-11.4.0.tgz", 2089 | "integrity": "sha512-JG0lzxYcNi+UdcqcYDXzllb5Q2GEIaOYZ2yxwX4Y0QE5ffupP4TldbZkVTSFqUwXWhmkaS/vMmZHxKQR+HzWEg==", 2090 | "dev": true, 2091 | "license": "MIT", 2092 | "dependencies": { 2093 | "@putout/minify": "^4.0.0", 2094 | "@swc/core": "^1.6.7", 2095 | "clean-css": "^5.0.1", 2096 | "css-b64-images": "~0.2.5", 2097 | "debug": "^4.1.0", 2098 | "esbuild": "^0.23.0", 2099 | "find-up": "^7.0.0", 2100 | "html-minifier-terser": "^7.1.0", 2101 | "readjson": "^2.2.2", 2102 | "simport": "^1.2.0", 2103 | "terser": "^5.28.1", 2104 | "try-catch": "^3.0.0", 2105 | "try-to-catch": "^3.0.0" 2106 | }, 2107 | "bin": { 2108 | "minify": "bin/minify.js" 2109 | }, 2110 | "engines": { 2111 | "node": ">=18" 2112 | } 2113 | }, 2114 | "node_modules/minify/node_modules/find-up": { 2115 | "version": "7.0.0", 2116 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz", 2117 | "integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==", 2118 | "dev": true, 2119 | "license": "MIT", 2120 | "dependencies": { 2121 | "locate-path": "^7.2.0", 2122 | "path-exists": "^5.0.0", 2123 | "unicorn-magic": "^0.1.0" 2124 | }, 2125 | "engines": { 2126 | "node": ">=18" 2127 | }, 2128 | "funding": { 2129 | "url": "https://github.com/sponsors/sindresorhus" 2130 | } 2131 | }, 2132 | "node_modules/minify/node_modules/locate-path": { 2133 | "version": "7.2.0", 2134 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", 2135 | "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", 2136 | "dev": true, 2137 | "license": "MIT", 2138 | "dependencies": { 2139 | "p-locate": "^6.0.0" 2140 | }, 2141 | "engines": { 2142 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2143 | }, 2144 | "funding": { 2145 | "url": "https://github.com/sponsors/sindresorhus" 2146 | } 2147 | }, 2148 | "node_modules/minify/node_modules/p-limit": { 2149 | "version": "4.0.0", 2150 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", 2151 | "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", 2152 | "dev": true, 2153 | "license": "MIT", 2154 | "dependencies": { 2155 | "yocto-queue": "^1.0.0" 2156 | }, 2157 | "engines": { 2158 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2159 | }, 2160 | "funding": { 2161 | "url": "https://github.com/sponsors/sindresorhus" 2162 | } 2163 | }, 2164 | "node_modules/minify/node_modules/p-locate": { 2165 | "version": "6.0.0", 2166 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", 2167 | "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", 2168 | "dev": true, 2169 | "license": "MIT", 2170 | "dependencies": { 2171 | "p-limit": "^4.0.0" 2172 | }, 2173 | "engines": { 2174 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2175 | }, 2176 | "funding": { 2177 | "url": "https://github.com/sponsors/sindresorhus" 2178 | } 2179 | }, 2180 | "node_modules/minify/node_modules/path-exists": { 2181 | "version": "5.0.0", 2182 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", 2183 | "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", 2184 | "dev": true, 2185 | "license": "MIT", 2186 | "engines": { 2187 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2188 | } 2189 | }, 2190 | "node_modules/minimatch": { 2191 | "version": "5.1.6", 2192 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 2193 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 2194 | "dev": true, 2195 | "license": "ISC", 2196 | "dependencies": { 2197 | "brace-expansion": "^2.0.1" 2198 | }, 2199 | "engines": { 2200 | "node": ">=10" 2201 | } 2202 | }, 2203 | "node_modules/mocha": { 2204 | "version": "10.7.3", 2205 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", 2206 | "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", 2207 | "dev": true, 2208 | "license": "MIT", 2209 | "dependencies": { 2210 | "ansi-colors": "^4.1.3", 2211 | "browser-stdout": "^1.3.1", 2212 | "chokidar": "^3.5.3", 2213 | "debug": "^4.3.5", 2214 | "diff": "^5.2.0", 2215 | "escape-string-regexp": "^4.0.0", 2216 | "find-up": "^5.0.0", 2217 | "glob": "^8.1.0", 2218 | "he": "^1.2.0", 2219 | "js-yaml": "^4.1.0", 2220 | "log-symbols": "^4.1.0", 2221 | "minimatch": "^5.1.6", 2222 | "ms": "^2.1.3", 2223 | "serialize-javascript": "^6.0.2", 2224 | "strip-json-comments": "^3.1.1", 2225 | "supports-color": "^8.1.1", 2226 | "workerpool": "^6.5.1", 2227 | "yargs": "^16.2.0", 2228 | "yargs-parser": "^20.2.9", 2229 | "yargs-unparser": "^2.0.0" 2230 | }, 2231 | "bin": { 2232 | "_mocha": "bin/_mocha", 2233 | "mocha": "bin/mocha.js" 2234 | }, 2235 | "engines": { 2236 | "node": ">= 14.0.0" 2237 | } 2238 | }, 2239 | "node_modules/mocha/node_modules/escape-string-regexp": { 2240 | "version": "4.0.0", 2241 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2242 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2243 | "dev": true, 2244 | "engines": { 2245 | "node": ">=10" 2246 | }, 2247 | "funding": { 2248 | "url": "https://github.com/sponsors/sindresorhus" 2249 | } 2250 | }, 2251 | "node_modules/mocha/node_modules/he": { 2252 | "version": "1.2.0", 2253 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 2254 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 2255 | "dev": true, 2256 | "bin": { 2257 | "he": "bin/he" 2258 | } 2259 | }, 2260 | "node_modules/mocha/node_modules/supports-color": { 2261 | "version": "8.1.1", 2262 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2263 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2264 | "dev": true, 2265 | "license": "MIT", 2266 | "dependencies": { 2267 | "has-flag": "^4.0.0" 2268 | }, 2269 | "engines": { 2270 | "node": ">=10" 2271 | }, 2272 | "funding": { 2273 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2274 | } 2275 | }, 2276 | "node_modules/ms": { 2277 | "version": "2.1.3", 2278 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2279 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2280 | "dev": true, 2281 | "license": "MIT" 2282 | }, 2283 | "node_modules/no-case": { 2284 | "version": "3.0.4", 2285 | "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", 2286 | "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", 2287 | "dev": true, 2288 | "license": "MIT", 2289 | "dependencies": { 2290 | "lower-case": "^2.0.2", 2291 | "tslib": "^2.0.3" 2292 | } 2293 | }, 2294 | "node_modules/normalize-path": { 2295 | "version": "3.0.0", 2296 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2297 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2298 | "dev": true, 2299 | "license": "MIT", 2300 | "engines": { 2301 | "node": ">=0.10.0" 2302 | } 2303 | }, 2304 | "node_modules/number-is-nan": { 2305 | "version": "1.0.1", 2306 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 2307 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", 2308 | "dev": true, 2309 | "engines": { 2310 | "node": ">=0.10.0" 2311 | } 2312 | }, 2313 | "node_modules/oauth-sign": { 2314 | "version": "0.9.0", 2315 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 2316 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 2317 | "dev": true, 2318 | "engines": { 2319 | "node": "*" 2320 | } 2321 | }, 2322 | "node_modules/object-keys": { 2323 | "version": "1.1.1", 2324 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2325 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2326 | "dev": true, 2327 | "engines": { 2328 | "node": ">= 0.4" 2329 | } 2330 | }, 2331 | "node_modules/once": { 2332 | "version": "1.4.0", 2333 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2334 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2335 | "dev": true, 2336 | "license": "ISC", 2337 | "dependencies": { 2338 | "wrappy": "1" 2339 | } 2340 | }, 2341 | "node_modules/p-limit": { 2342 | "version": "3.0.2", 2343 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz", 2344 | "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==", 2345 | "dev": true, 2346 | "dependencies": { 2347 | "p-try": "^2.0.0" 2348 | }, 2349 | "engines": { 2350 | "node": ">=10" 2351 | }, 2352 | "funding": { 2353 | "url": "https://github.com/sponsors/sindresorhus" 2354 | } 2355 | }, 2356 | "node_modules/p-locate": { 2357 | "version": "5.0.0", 2358 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2359 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2360 | "dev": true, 2361 | "dependencies": { 2362 | "p-limit": "^3.0.2" 2363 | }, 2364 | "engines": { 2365 | "node": ">=10" 2366 | }, 2367 | "funding": { 2368 | "url": "https://github.com/sponsors/sindresorhus" 2369 | } 2370 | }, 2371 | "node_modules/p-try": { 2372 | "version": "2.2.0", 2373 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 2374 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 2375 | "dev": true, 2376 | "engines": { 2377 | "node": ">=6" 2378 | } 2379 | }, 2380 | "node_modules/param-case": { 2381 | "version": "3.0.4", 2382 | "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", 2383 | "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", 2384 | "dev": true, 2385 | "license": "MIT", 2386 | "dependencies": { 2387 | "dot-case": "^3.0.4", 2388 | "tslib": "^2.0.3" 2389 | } 2390 | }, 2391 | "node_modules/pascal-case": { 2392 | "version": "3.1.2", 2393 | "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", 2394 | "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", 2395 | "dev": true, 2396 | "license": "MIT", 2397 | "dependencies": { 2398 | "no-case": "^3.0.4", 2399 | "tslib": "^2.0.3" 2400 | } 2401 | }, 2402 | "node_modules/path-exists": { 2403 | "version": "4.0.0", 2404 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2405 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2406 | "dev": true, 2407 | "engines": { 2408 | "node": ">=8" 2409 | } 2410 | }, 2411 | "node_modules/pathval": { 2412 | "version": "1.1.1", 2413 | "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", 2414 | "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", 2415 | "dev": true, 2416 | "license": "MIT", 2417 | "engines": { 2418 | "node": "*" 2419 | } 2420 | }, 2421 | "node_modules/performance-now": { 2422 | "version": "2.1.0", 2423 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 2424 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", 2425 | "dev": true 2426 | }, 2427 | "node_modules/picomatch": { 2428 | "version": "2.3.1", 2429 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2430 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2431 | "dev": true, 2432 | "license": "MIT", 2433 | "engines": { 2434 | "node": ">=8.6" 2435 | }, 2436 | "funding": { 2437 | "url": "https://github.com/sponsors/jonschlinkert" 2438 | } 2439 | }, 2440 | "node_modules/psl": { 2441 | "version": "1.8.0", 2442 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 2443 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", 2444 | "dev": true 2445 | }, 2446 | "node_modules/punycode": { 2447 | "version": "2.1.1", 2448 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 2449 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 2450 | "dev": true, 2451 | "engines": { 2452 | "node": ">=6" 2453 | } 2454 | }, 2455 | "node_modules/qs": { 2456 | "version": "6.5.3", 2457 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", 2458 | "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", 2459 | "dev": true, 2460 | "license": "BSD-3-Clause", 2461 | "engines": { 2462 | "node": ">=0.6" 2463 | } 2464 | }, 2465 | "node_modules/ramda": { 2466 | "version": "0.27.1", 2467 | "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", 2468 | "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==", 2469 | "dev": true 2470 | }, 2471 | "node_modules/randombytes": { 2472 | "version": "2.1.0", 2473 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 2474 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 2475 | "dev": true, 2476 | "license": "MIT", 2477 | "dependencies": { 2478 | "safe-buffer": "^5.1.0" 2479 | } 2480 | }, 2481 | "node_modules/readdirp": { 2482 | "version": "3.6.0", 2483 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2484 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2485 | "dev": true, 2486 | "license": "MIT", 2487 | "dependencies": { 2488 | "picomatch": "^2.2.1" 2489 | }, 2490 | "engines": { 2491 | "node": ">=8.10.0" 2492 | } 2493 | }, 2494 | "node_modules/readjson": { 2495 | "version": "2.2.2", 2496 | "resolved": "https://registry.npmjs.org/readjson/-/readjson-2.2.2.tgz", 2497 | "integrity": "sha512-PdeC9tsmLWBiL8vMhJvocq+OezQ3HhsH2HrN7YkhfYcTjQSa/iraB15A7Qvt7Xpr0Yd2rDNt6GbFwVQDg3HcAw==", 2498 | "dev": true, 2499 | "license": "MIT", 2500 | "dependencies": { 2501 | "jju": "^1.4.0", 2502 | "try-catch": "^3.0.0" 2503 | }, 2504 | "engines": { 2505 | "node": ">=10" 2506 | } 2507 | }, 2508 | "node_modules/relateurl": { 2509 | "version": "0.2.7", 2510 | "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", 2511 | "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", 2512 | "dev": true, 2513 | "license": "MIT", 2514 | "engines": { 2515 | "node": ">= 0.10" 2516 | } 2517 | }, 2518 | "node_modules/request": { 2519 | "version": "2.88.2", 2520 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 2521 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 2522 | "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", 2523 | "dev": true, 2524 | "dependencies": { 2525 | "aws-sign2": "~0.7.0", 2526 | "aws4": "^1.8.0", 2527 | "caseless": "~0.12.0", 2528 | "combined-stream": "~1.0.6", 2529 | "extend": "~3.0.2", 2530 | "forever-agent": "~0.6.1", 2531 | "form-data": "~2.3.2", 2532 | "har-validator": "~5.1.3", 2533 | "http-signature": "~1.2.0", 2534 | "is-typedarray": "~1.0.0", 2535 | "isstream": "~0.1.2", 2536 | "json-stringify-safe": "~5.0.1", 2537 | "mime-types": "~2.1.19", 2538 | "oauth-sign": "~0.9.0", 2539 | "performance-now": "^2.1.0", 2540 | "qs": "~6.5.2", 2541 | "safe-buffer": "^5.1.2", 2542 | "tough-cookie": "~2.5.0", 2543 | "tunnel-agent": "^0.6.0", 2544 | "uuid": "^3.3.2" 2545 | }, 2546 | "engines": { 2547 | "node": ">= 6" 2548 | } 2549 | }, 2550 | "node_modules/request-promise": { 2551 | "version": "4.2.6", 2552 | "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", 2553 | "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", 2554 | "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", 2555 | "dev": true, 2556 | "license": "ISC", 2557 | "dependencies": { 2558 | "bluebird": "^3.5.0", 2559 | "request-promise-core": "1.1.4", 2560 | "stealthy-require": "^1.1.1", 2561 | "tough-cookie": "^2.3.3" 2562 | }, 2563 | "engines": { 2564 | "node": ">=0.10.0" 2565 | }, 2566 | "peerDependencies": { 2567 | "request": "^2.34" 2568 | } 2569 | }, 2570 | "node_modules/request-promise-core": { 2571 | "version": "1.1.4", 2572 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", 2573 | "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", 2574 | "dev": true, 2575 | "license": "ISC", 2576 | "dependencies": { 2577 | "lodash": "^4.17.19" 2578 | }, 2579 | "engines": { 2580 | "node": ">=0.10.0" 2581 | }, 2582 | "peerDependencies": { 2583 | "request": "^2.34" 2584 | } 2585 | }, 2586 | "node_modules/require-directory": { 2587 | "version": "2.1.1", 2588 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2589 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2590 | "dev": true, 2591 | "license": "MIT", 2592 | "engines": { 2593 | "node": ">=0.10.0" 2594 | } 2595 | }, 2596 | "node_modules/safe-buffer": { 2597 | "version": "5.2.1", 2598 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2599 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2600 | "dev": true, 2601 | "funding": [ 2602 | { 2603 | "type": "github", 2604 | "url": "https://github.com/sponsors/feross" 2605 | }, 2606 | { 2607 | "type": "patreon", 2608 | "url": "https://www.patreon.com/feross" 2609 | }, 2610 | { 2611 | "type": "consulting", 2612 | "url": "https://feross.org/support" 2613 | } 2614 | ] 2615 | }, 2616 | "node_modules/safer-buffer": { 2617 | "version": "2.1.2", 2618 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2619 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 2620 | "dev": true 2621 | }, 2622 | "node_modules/serialize-javascript": { 2623 | "version": "6.0.2", 2624 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 2625 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 2626 | "dev": true, 2627 | "license": "BSD-3-Clause", 2628 | "dependencies": { 2629 | "randombytes": "^2.1.0" 2630 | } 2631 | }, 2632 | "node_modules/simport": { 2633 | "version": "1.2.0", 2634 | "resolved": "https://registry.npmjs.org/simport/-/simport-1.2.0.tgz", 2635 | "integrity": "sha512-85Bm7pKsqiiQ8rmYCaPDdlXZjJvuW6/k/FY8MTtLFMgU7f8S00CgTHfRtWB6KwSb6ek4p9YyG2enG1+yJbl+CA==", 2636 | "dev": true, 2637 | "license": "MIT", 2638 | "dependencies": { 2639 | "readjson": "^2.2.0", 2640 | "try-to-catch": "^3.0.0" 2641 | }, 2642 | "engines": { 2643 | "node": ">=12.2" 2644 | } 2645 | }, 2646 | "node_modules/source-map": { 2647 | "version": "0.6.1", 2648 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2649 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2650 | "dev": true, 2651 | "license": "BSD-3-Clause", 2652 | "engines": { 2653 | "node": ">=0.10.0" 2654 | } 2655 | }, 2656 | "node_modules/source-map-support": { 2657 | "version": "0.5.21", 2658 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 2659 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 2660 | "dev": true, 2661 | "license": "MIT", 2662 | "dependencies": { 2663 | "buffer-from": "^1.0.0", 2664 | "source-map": "^0.6.0" 2665 | } 2666 | }, 2667 | "node_modules/sshpk": { 2668 | "version": "1.16.1", 2669 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 2670 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 2671 | "dev": true, 2672 | "dependencies": { 2673 | "asn1": "~0.2.3", 2674 | "assert-plus": "^1.0.0", 2675 | "bcrypt-pbkdf": "^1.0.0", 2676 | "dashdash": "^1.12.0", 2677 | "ecc-jsbn": "~0.1.1", 2678 | "getpass": "^0.1.1", 2679 | "jsbn": "~0.1.0", 2680 | "safer-buffer": "^2.0.2", 2681 | "tweetnacl": "~0.14.0" 2682 | }, 2683 | "bin": { 2684 | "sshpk-conv": "bin/sshpk-conv", 2685 | "sshpk-sign": "bin/sshpk-sign", 2686 | "sshpk-verify": "bin/sshpk-verify" 2687 | }, 2688 | "engines": { 2689 | "node": ">=0.10.0" 2690 | } 2691 | }, 2692 | "node_modules/stealthy-require": { 2693 | "version": "1.1.1", 2694 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", 2695 | "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", 2696 | "dev": true, 2697 | "license": "ISC", 2698 | "engines": { 2699 | "node": ">=0.10.0" 2700 | } 2701 | }, 2702 | "node_modules/strip-json-comments": { 2703 | "version": "3.1.1", 2704 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2705 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2706 | "dev": true, 2707 | "engines": { 2708 | "node": ">=8" 2709 | }, 2710 | "funding": { 2711 | "url": "https://github.com/sponsors/sindresorhus" 2712 | } 2713 | }, 2714 | "node_modules/supports-color": { 2715 | "version": "7.2.0", 2716 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2717 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2718 | "dev": true, 2719 | "license": "MIT", 2720 | "dependencies": { 2721 | "has-flag": "^4.0.0" 2722 | }, 2723 | "engines": { 2724 | "node": ">=8" 2725 | } 2726 | }, 2727 | "node_modules/terser": { 2728 | "version": "5.32.0", 2729 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.32.0.tgz", 2730 | "integrity": "sha512-v3Gtw3IzpBJ0ugkxEX8U0W6+TnPKRRCWGh1jC/iM/e3Ki5+qvO1L1EAZ56bZasc64aXHwRHNIQEzm6//i5cemQ==", 2731 | "dev": true, 2732 | "license": "BSD-2-Clause", 2733 | "dependencies": { 2734 | "@jridgewell/source-map": "^0.3.3", 2735 | "acorn": "^8.8.2", 2736 | "commander": "^2.20.0", 2737 | "source-map-support": "~0.5.20" 2738 | }, 2739 | "bin": { 2740 | "terser": "bin/terser" 2741 | }, 2742 | "engines": { 2743 | "node": ">=10" 2744 | } 2745 | }, 2746 | "node_modules/terser/node_modules/acorn": { 2747 | "version": "8.12.1", 2748 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 2749 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 2750 | "dev": true, 2751 | "license": "MIT", 2752 | "bin": { 2753 | "acorn": "bin/acorn" 2754 | }, 2755 | "engines": { 2756 | "node": ">=0.4.0" 2757 | } 2758 | }, 2759 | "node_modules/to-regex-range": { 2760 | "version": "5.0.1", 2761 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2762 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2763 | "dev": true, 2764 | "license": "MIT", 2765 | "dependencies": { 2766 | "is-number": "^7.0.0" 2767 | }, 2768 | "engines": { 2769 | "node": ">=8.0" 2770 | } 2771 | }, 2772 | "node_modules/topo": { 2773 | "version": "2.1.1", 2774 | "resolved": "https://registry.npmjs.org/topo/-/topo-2.1.1.tgz", 2775 | "integrity": "sha512-ZPrPP5nwzZy1fw9abHQH2k+YarTgp9UMAztcB3MmlcZSif63Eg+az05p6wTDaZmnqpS3Mk7K+2W60iHarlz8Ug==", 2776 | "deprecated": "This module has moved and is now available at @hapi/topo. Please update your dependencies as this version is no longer maintained and may contain bugs and security issues.", 2777 | "dev": true, 2778 | "license": "SEE LICENSE IN LICENSE.md", 2779 | "dependencies": { 2780 | "hoek": "4.x.x" 2781 | }, 2782 | "engines": { 2783 | "node": ">=6.0.0" 2784 | } 2785 | }, 2786 | "node_modules/tough-cookie": { 2787 | "version": "2.5.0", 2788 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 2789 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 2790 | "dev": true, 2791 | "dependencies": { 2792 | "psl": "^1.1.28", 2793 | "punycode": "^2.1.1" 2794 | }, 2795 | "engines": { 2796 | "node": ">=0.8" 2797 | } 2798 | }, 2799 | "node_modules/try-catch": { 2800 | "version": "3.0.1", 2801 | "resolved": "https://registry.npmjs.org/try-catch/-/try-catch-3.0.1.tgz", 2802 | "integrity": "sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ==", 2803 | "dev": true, 2804 | "license": "MIT", 2805 | "engines": { 2806 | "node": ">=6" 2807 | } 2808 | }, 2809 | "node_modules/try-to-catch": { 2810 | "version": "3.0.1", 2811 | "resolved": "https://registry.npmjs.org/try-to-catch/-/try-to-catch-3.0.1.tgz", 2812 | "integrity": "sha512-hOY83V84Hx/1sCzDSaJA+Xz2IIQOHRvjxzt+F0OjbQGPZ6yLPLArMA0gw/484MlfUkQbCpKYMLX3VDCAjWKfzQ==", 2813 | "dev": true, 2814 | "license": "MIT", 2815 | "engines": { 2816 | "node": ">=6" 2817 | } 2818 | }, 2819 | "node_modules/tslib": { 2820 | "version": "2.7.0", 2821 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", 2822 | "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", 2823 | "dev": true, 2824 | "license": "0BSD" 2825 | }, 2826 | "node_modules/tunnel-agent": { 2827 | "version": "0.6.0", 2828 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 2829 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 2830 | "dev": true, 2831 | "dependencies": { 2832 | "safe-buffer": "^5.0.1" 2833 | }, 2834 | "engines": { 2835 | "node": "*" 2836 | } 2837 | }, 2838 | "node_modules/tweetnacl": { 2839 | "version": "0.14.5", 2840 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 2841 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", 2842 | "dev": true 2843 | }, 2844 | "node_modules/type-detect": { 2845 | "version": "4.0.8", 2846 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 2847 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 2848 | "dev": true, 2849 | "engines": { 2850 | "node": ">=4" 2851 | } 2852 | }, 2853 | "node_modules/unicorn-magic": { 2854 | "version": "0.1.0", 2855 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 2856 | "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 2857 | "dev": true, 2858 | "license": "MIT", 2859 | "engines": { 2860 | "node": ">=18" 2861 | }, 2862 | "funding": { 2863 | "url": "https://github.com/sponsors/sindresorhus" 2864 | } 2865 | }, 2866 | "node_modules/uri-js": { 2867 | "version": "4.4.0", 2868 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", 2869 | "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", 2870 | "dev": true, 2871 | "dependencies": { 2872 | "punycode": "^2.1.0" 2873 | } 2874 | }, 2875 | "node_modules/uuid": { 2876 | "version": "3.4.0", 2877 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 2878 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 2879 | "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", 2880 | "dev": true, 2881 | "bin": { 2882 | "uuid": "bin/uuid" 2883 | } 2884 | }, 2885 | "node_modules/verror": { 2886 | "version": "1.10.0", 2887 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 2888 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 2889 | "dev": true, 2890 | "engines": [ 2891 | "node >=0.6.0" 2892 | ], 2893 | "dependencies": { 2894 | "assert-plus": "^1.0.0", 2895 | "core-util-is": "1.0.2", 2896 | "extsprintf": "^1.2.0" 2897 | } 2898 | }, 2899 | "node_modules/workerpool": { 2900 | "version": "6.5.1", 2901 | "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", 2902 | "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", 2903 | "dev": true, 2904 | "license": "Apache-2.0" 2905 | }, 2906 | "node_modules/wrap-ansi": { 2907 | "version": "7.0.0", 2908 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2909 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2910 | "dev": true, 2911 | "license": "MIT", 2912 | "dependencies": { 2913 | "ansi-styles": "^4.0.0", 2914 | "string-width": "^4.1.0", 2915 | "strip-ansi": "^6.0.0" 2916 | }, 2917 | "engines": { 2918 | "node": ">=10" 2919 | }, 2920 | "funding": { 2921 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2922 | } 2923 | }, 2924 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 2925 | "version": "5.0.1", 2926 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2927 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2928 | "dev": true, 2929 | "license": "MIT", 2930 | "engines": { 2931 | "node": ">=8" 2932 | } 2933 | }, 2934 | "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { 2935 | "version": "3.0.0", 2936 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2937 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2938 | "dev": true, 2939 | "license": "MIT", 2940 | "engines": { 2941 | "node": ">=8" 2942 | } 2943 | }, 2944 | "node_modules/wrap-ansi/node_modules/string-width": { 2945 | "version": "4.2.3", 2946 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2947 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2948 | "dev": true, 2949 | "license": "MIT", 2950 | "dependencies": { 2951 | "emoji-regex": "^8.0.0", 2952 | "is-fullwidth-code-point": "^3.0.0", 2953 | "strip-ansi": "^6.0.1" 2954 | }, 2955 | "engines": { 2956 | "node": ">=8" 2957 | } 2958 | }, 2959 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 2960 | "version": "6.0.1", 2961 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2962 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2963 | "dev": true, 2964 | "license": "MIT", 2965 | "dependencies": { 2966 | "ansi-regex": "^5.0.1" 2967 | }, 2968 | "engines": { 2969 | "node": ">=8" 2970 | } 2971 | }, 2972 | "node_modules/wrappy": { 2973 | "version": "1.0.2", 2974 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2975 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2976 | "dev": true, 2977 | "license": "ISC" 2978 | }, 2979 | "node_modules/xtend": { 2980 | "version": "4.0.2", 2981 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 2982 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 2983 | "dev": true, 2984 | "engines": { 2985 | "node": ">=0.4" 2986 | } 2987 | }, 2988 | "node_modules/y18n": { 2989 | "version": "5.0.8", 2990 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2991 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2992 | "dev": true, 2993 | "license": "ISC", 2994 | "engines": { 2995 | "node": ">=10" 2996 | } 2997 | }, 2998 | "node_modules/yargs": { 2999 | "version": "16.2.0", 3000 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 3001 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 3002 | "dev": true, 3003 | "license": "MIT", 3004 | "dependencies": { 3005 | "cliui": "^7.0.2", 3006 | "escalade": "^3.1.1", 3007 | "get-caller-file": "^2.0.5", 3008 | "require-directory": "^2.1.1", 3009 | "string-width": "^4.2.0", 3010 | "y18n": "^5.0.5", 3011 | "yargs-parser": "^20.2.2" 3012 | }, 3013 | "engines": { 3014 | "node": ">=10" 3015 | } 3016 | }, 3017 | "node_modules/yargs-parser": { 3018 | "version": "20.2.9", 3019 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 3020 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 3021 | "dev": true, 3022 | "license": "ISC", 3023 | "engines": { 3024 | "node": ">=10" 3025 | } 3026 | }, 3027 | "node_modules/yargs-unparser": { 3028 | "version": "2.0.0", 3029 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", 3030 | "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", 3031 | "dev": true, 3032 | "dependencies": { 3033 | "camelcase": "^6.0.0", 3034 | "decamelize": "^4.0.0", 3035 | "flat": "^5.0.2", 3036 | "is-plain-obj": "^2.1.0" 3037 | }, 3038 | "engines": { 3039 | "node": ">=10" 3040 | } 3041 | }, 3042 | "node_modules/yargs-unparser/node_modules/camelcase": { 3043 | "version": "6.2.0", 3044 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", 3045 | "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", 3046 | "dev": true, 3047 | "engines": { 3048 | "node": ">=10" 3049 | }, 3050 | "funding": { 3051 | "url": "https://github.com/sponsors/sindresorhus" 3052 | } 3053 | }, 3054 | "node_modules/yargs-unparser/node_modules/decamelize": { 3055 | "version": "4.0.0", 3056 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", 3057 | "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", 3058 | "dev": true, 3059 | "engines": { 3060 | "node": ">=10" 3061 | }, 3062 | "funding": { 3063 | "url": "https://github.com/sponsors/sindresorhus" 3064 | } 3065 | }, 3066 | "node_modules/yargs/node_modules/ansi-regex": { 3067 | "version": "5.0.1", 3068 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3069 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3070 | "dev": true, 3071 | "license": "MIT", 3072 | "engines": { 3073 | "node": ">=8" 3074 | } 3075 | }, 3076 | "node_modules/yargs/node_modules/is-fullwidth-code-point": { 3077 | "version": "3.0.0", 3078 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3079 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3080 | "dev": true, 3081 | "license": "MIT", 3082 | "engines": { 3083 | "node": ">=8" 3084 | } 3085 | }, 3086 | "node_modules/yargs/node_modules/string-width": { 3087 | "version": "4.2.3", 3088 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3089 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3090 | "dev": true, 3091 | "license": "MIT", 3092 | "dependencies": { 3093 | "emoji-regex": "^8.0.0", 3094 | "is-fullwidth-code-point": "^3.0.0", 3095 | "strip-ansi": "^6.0.1" 3096 | }, 3097 | "engines": { 3098 | "node": ">=8" 3099 | } 3100 | }, 3101 | "node_modules/yargs/node_modules/strip-ansi": { 3102 | "version": "6.0.1", 3103 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3104 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3105 | "dev": true, 3106 | "license": "MIT", 3107 | "dependencies": { 3108 | "ansi-regex": "^5.0.1" 3109 | }, 3110 | "engines": { 3111 | "node": ">=8" 3112 | } 3113 | }, 3114 | "node_modules/yocto-queue": { 3115 | "version": "1.1.1", 3116 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", 3117 | "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", 3118 | "dev": true, 3119 | "license": "MIT", 3120 | "engines": { 3121 | "node": ">=12.20" 3122 | }, 3123 | "funding": { 3124 | "url": "https://github.com/sponsors/sindresorhus" 3125 | } 3126 | } 3127 | } 3128 | } 3129 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nano-copy", 3 | "version": "0.1.1", 4 | "description": "Superfast, super small JavaScript object deep copy.", 5 | "main": "index.js", 6 | "client": "./browser/nano-copy.js", 7 | "reveal": true, 8 | "isomorphic": true, 9 | "scripts": { 10 | "prepublish": "copy index.js browser/nano-copy.js && npm run minify", 11 | "minify": "minify browser/nano-copy.js > browser/nano-copy.min.js" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/anywhichway/nano-copy.git" 16 | }, 17 | "keywords": [ 18 | "fast-copy", 19 | "copy", 20 | "fast-deepclone", 21 | "ramda", 22 | "deepclone" 23 | ], 24 | "author": "Simon Y. Blackwell (http://www.github.com/anywhichway)", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/anywhichway/nano-copy/issues" 28 | }, 29 | "homepage": "https://github.com/anywhichway/nano-copy#readme", 30 | "devDependencies": { 31 | "benchee": "^1.1.0", 32 | "benchtest": "^2.0.7", 33 | "blanket": "^1.2.3", 34 | "chai": "^4.2.0", 35 | "cli-table2": "^0.2.0", 36 | "clone": "^2.1.2", 37 | "codacy-coverage": "^2.0.3", 38 | "codeclimate-test-reporter": "^0.5.1", 39 | "deepclone": "^1.0.2", 40 | "fast-clone": "^1.5.13", 41 | "fast-copy": "^2.1.0", 42 | "lodash": "^4.17.21", 43 | "mocha": "^10.7.3", 44 | "ramda": "^0.27.1", 45 | "minify": "^11.4.0" 46 | }, 47 | "dependencies": { 48 | 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /test/fast-copy.min.js: -------------------------------------------------------------------------------- 1 | !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self)["fast-copy"]=t()}(this,(function(){"use strict";var e=Function.prototype.toString,t=Object.create,r=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,i=Object.getPrototypeOf,a=Object.prototype,c=a.hasOwnProperty,u=a.propertyIsEnumerable,s="function"==typeof f,l="function"==typeof WeakMap,p=function(r,n){if(!r.constructor)return t(null);var o=r.constructor,f=r.__proto__||i(r);if(o===n.Object)return f===n.Object.prototype?{}:t(f);if(~e.call(o).indexOf("[native code]"))try{return new o}catch(e){}return t(f)},y=function(e,t,r,n){var o=p(e,t);for(var i in n.set(e,o),e)c.call(e,i)&&(o[i]=r(e[i],n));if(s){var a=f(e),l=a.length;if(l)for(var y=0,d=void 0;y 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |
16 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | const deepEqual = (a,b,checked=new WeakSet()) => { 2 | if(a===b) return true; 3 | const atype = typeof(a), btype = typeof(b); 4 | if(atype!==btype || Object.getPrototypeOf(a)!=Object.getPrototypeOf(b) || (a && b && a.length!==b.length)) return false; 5 | if(atype==="number" && isNaN(a) && !isNaN(b)) return false; 6 | if(atype==="object" && a && b && !checked.has(a)) { 7 | checked.add(a); 8 | if(typeof(a.size)==="number") { // for iterables 9 | if(a.size!==b.size) return false; 10 | } 11 | if(typeof(a.length)==="number") { 12 | if(a.length!==b.length) return false; 13 | } 14 | if(typeof(a.type)==="string") { // for Blob 15 | if(a.type!==b.type) return false; 16 | } 17 | if(a.buffer) { // for DataView 18 | if(a.byteLength!==b.byteLength) return false; 19 | if(a.byteOffset!==b.byteOffset) return false; 20 | return deepEqual(a.buffer,b.buffer); 21 | } 22 | if(Object.keys(a).length!==Object.keys(b).length) return false; 23 | for(const key in a) { 24 | if(!deepEqual(a[key],b[key],checked)) { 25 | return false; 26 | } 27 | } 28 | if(a instanceof Date && a.getTime()!==b.getTime()) return false; 29 | if(a instanceof RegExp) return a.toString() === a.toString(); 30 | if(typeof(a.entries)==="function") { 31 | if(typeof(b.entries)!=="function") return false; 32 | const bentries = Array.from(b.entries()); 33 | for(const [akey,avalue] of a.entries()) { 34 | if(!bentries.some(([bkey,bvalue]) => deepEqual(akey,bkey,checked) && deepEqual(avalue,bvalue,checked))) return false; 35 | } 36 | } 37 | } 38 | return true; 39 | } 40 | 41 | class Foo { 42 | constructor(value) { 43 | this.value = value; 44 | } 45 | } 46 | 47 | const simpleObject = { 48 | boolean: true, 49 | nil: null, 50 | number: 123, 51 | string: 'foo', 52 | }; 53 | 54 | const complexObject = Object.assign({}, simpleObject, { 55 | array: ['foo', { bar: 'baz' }], 56 | // arrayBuffer: new ArrayBuffer(8), 57 | // buffer: new Buffer('this is a test buffer'), 58 | // dataView: new DataView(new ArrayBuffer(16)), 59 | date: new Date(), 60 | error: new Error('boom'), 61 | fn() { 62 | return 'foo'; 63 | }, 64 | map: new Map().set('foo', { bar: { baz: 'quz' } }), 65 | nan: NaN, 66 | blob: new Blob(["blob"],{type:"text/plain"}), 67 | dataview : new DataView(new ArrayBuffer(16),12,4), 68 | object: { foo: { bar: 'baz' } }, 69 | // promise: Promise.resolve('foo'), 70 | regexp: /foo/, 71 | set: new Set().add('foo').add({ bar: { baz: 'quz' } }), 72 | typedArray: new Uint8Array([12, 15]), 73 | undef: undefined, 74 | weakmap: new WeakMap([[{}, 'foo'], [{}, 'bar']]), 75 | weakset: new WeakSet([{}, {}]), 76 | // [Symbol('key')]: 'value', 77 | }); 78 | 79 | const circularObject = { 80 | deeply: { 81 | nested: { 82 | reference: {}, 83 | }, 84 | }, 85 | }; 86 | 87 | circularObject.deeply.nested.reference = circularObject; 88 | 89 | 90 | describe("Test",function() { 91 | it("simple nano-copy",function() { 92 | var result = nanoCopy(simpleObject) 93 | expect(deepEqual(simpleObject,result)).to.equal(true); 94 | }); 95 | it("simple fast-copy",function() { 96 | var result = copy(simpleObject) 97 | expect(deepEqual(simpleObject,result)).to.equal(true); 98 | }); 99 | it("simple nano-copy for performance #",function() { 100 | nanoCopy(simpleObject) 101 | }); 102 | it("simple fast-copy for performance #",function() { 103 | copy(simpleObject) 104 | }); 105 | it("complex nano-copy",function() { 106 | var result = nanoCopy(complexObject); 107 | expect(deepEqual(complexObject,result)).to.equal(true); 108 | }); 109 | it("complex fast-copy",function() { 110 | var result = copy(complexObject); 111 | expect(deepEqual(complexObject,result)).to.equal(true); 112 | }); 113 | it("complex nano-copy for performance #",function() { 114 | nanoCopy(complexObject) 115 | }); 116 | it("complex fast-copy for performance #",function() { 117 | copy(complexObject) 118 | }); 119 | it("circular nano-copy",function() { 120 | var result = nanoCopy(circularObject) 121 | expect(deepEqual(circularObject,result)).to.equal(true); 122 | }); 123 | it("circular fast-copy",function() { 124 | var result = copy(circularObject) 125 | expect(deepEqual(circularObject,result)).to.equal(true); 126 | }); 127 | it("circular nano-copy for performance #",function() { 128 | nanoCopy(circularObject) 129 | }); 130 | it("circular fast-copy for performance #",function() { 131 | copy(circularObject) 132 | }); 133 | it("non-standard",function() { 134 | const array = new Int32Array([1,2]); 135 | array.extra = "extra"; 136 | const copy = nanoCopy(array,{nonStandard:true}); 137 | expect(copy!==array).to.equal(true); 138 | expect(copy.extra).to.equal(array.extra); 139 | expect(copy.length).to.equal(array.length); 140 | expect(copy.every((item,i) => item==array[i])); 141 | }) 142 | }); 143 | 144 | --------------------------------------------------------------------------------