smart001 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/db.js +19 -0
- package/backend/node_modules/.bin/bcrypt +16 -0
- package/backend/node_modules/.bin/bcrypt.cmd +17 -0
- package/backend/node_modules/.bin/bcrypt.ps1 +28 -0
- package/backend/node_modules/.bin/json +16 -0
- package/backend/node_modules/.bin/json.cmd +17 -0
- package/backend/node_modules/.bin/json.ps1 +28 -0
- package/backend/node_modules/.bin/node-gyp-build +16 -0
- package/backend/node_modules/.bin/node-gyp-build-optional +16 -0
- package/backend/node_modules/.bin/node-gyp-build-optional.cmd +17 -0
- package/backend/node_modules/.bin/node-gyp-build-optional.ps1 +28 -0
- package/backend/node_modules/.bin/node-gyp-build-test +16 -0
- package/backend/node_modules/.bin/node-gyp-build-test.cmd +17 -0
- package/backend/node_modules/.bin/node-gyp-build-test.ps1 +28 -0
- package/backend/node_modules/.bin/node-gyp-build.cmd +17 -0
- package/backend/node_modules/.bin/node-gyp-build.ps1 +28 -0
- package/backend/node_modules/.bin/nodemon +16 -0
- package/backend/node_modules/.bin/nodemon.cmd +17 -0
- package/backend/node_modules/.bin/nodemon.ps1 +28 -0
- package/backend/node_modules/.bin/nodetouch +16 -0
- package/backend/node_modules/.bin/nodetouch.cmd +17 -0
- package/backend/node_modules/.bin/nodetouch.ps1 +28 -0
- package/backend/node_modules/.bin/semver +16 -0
- package/backend/node_modules/.bin/semver.cmd +17 -0
- package/backend/node_modules/.bin/semver.ps1 +28 -0
- package/backend/node_modules/.package-lock.json +1475 -0
- package/backend/node_modules/@types/node/LICENSE +21 -0
- package/backend/node_modules/@types/node/README.md +15 -0
- package/backend/node_modules/@types/node/assert/strict.d.ts +59 -0
- package/backend/node_modules/@types/node/assert.d.ts +950 -0
- package/backend/node_modules/@types/node/async_hooks.d.ts +711 -0
- package/backend/node_modules/@types/node/buffer.buffer.d.ts +466 -0
- package/backend/node_modules/@types/node/buffer.d.ts +1765 -0
- package/backend/node_modules/@types/node/child_process.d.ts +1366 -0
- package/backend/node_modules/@types/node/cluster.d.ts +432 -0
- package/backend/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/backend/node_modules/@types/node/console.d.ts +93 -0
- package/backend/node_modules/@types/node/constants.d.ts +14 -0
- package/backend/node_modules/@types/node/crypto.d.ts +4058 -0
- package/backend/node_modules/@types/node/dgram.d.ts +537 -0
- package/backend/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
- package/backend/node_modules/@types/node/dns/promises.d.ts +497 -0
- package/backend/node_modules/@types/node/dns.d.ts +876 -0
- package/backend/node_modules/@types/node/domain.d.ts +150 -0
- package/backend/node_modules/@types/node/events.d.ts +1008 -0
- package/backend/node_modules/@types/node/fs/promises.d.ts +1468 -0
- package/backend/node_modules/@types/node/fs.d.ts +4780 -0
- package/backend/node_modules/@types/node/globals.d.ts +150 -0
- package/backend/node_modules/@types/node/globals.typedarray.d.ts +101 -0
- package/backend/node_modules/@types/node/http.d.ts +2147 -0
- package/backend/node_modules/@types/node/http2.d.ts +2485 -0
- package/backend/node_modules/@types/node/https.d.ts +400 -0
- package/backend/node_modules/@types/node/index.d.ts +117 -0
- package/backend/node_modules/@types/node/inspector/promises.d.ts +35 -0
- package/backend/node_modules/@types/node/inspector.d.ts +264 -0
- package/backend/node_modules/@types/node/inspector.generated.d.ts +4406 -0
- package/backend/node_modules/@types/node/module.d.ts +755 -0
- package/backend/node_modules/@types/node/net.d.ts +970 -0
- package/backend/node_modules/@types/node/os.d.ts +498 -0
- package/backend/node_modules/@types/node/package.json +155 -0
- package/backend/node_modules/@types/node/path/posix.d.ts +8 -0
- package/backend/node_modules/@types/node/path/win32.d.ts +8 -0
- package/backend/node_modules/@types/node/path.d.ts +178 -0
- package/backend/node_modules/@types/node/perf_hooks.d.ts +612 -0
- package/backend/node_modules/@types/node/process.d.ts +2204 -0
- package/backend/node_modules/@types/node/punycode.d.ts +89 -0
- package/backend/node_modules/@types/node/querystring.d.ts +139 -0
- package/backend/node_modules/@types/node/quic.d.ts +897 -0
- package/backend/node_modules/@types/node/readline/promises.d.ts +158 -0
- package/backend/node_modules/@types/node/readline.d.ts +507 -0
- package/backend/node_modules/@types/node/repl.d.ts +420 -0
- package/backend/node_modules/@types/node/sea.d.ts +47 -0
- package/backend/node_modules/@types/node/sqlite.d.ts +1068 -0
- package/backend/node_modules/@types/node/stream/consumers.d.ts +114 -0
- package/backend/node_modules/@types/node/stream/iter.d.ts +301 -0
- package/backend/node_modules/@types/node/stream/promises.d.ts +211 -0
- package/backend/node_modules/@types/node/stream/web.d.ts +300 -0
- package/backend/node_modules/@types/node/stream.d.ts +1774 -0
- package/backend/node_modules/@types/node/string_decoder.d.ts +27 -0
- package/backend/node_modules/@types/node/test/reporters.d.ts +59 -0
- package/backend/node_modules/@types/node/test.d.ts +2279 -0
- package/backend/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/backend/node_modules/@types/node/timers.d.ts +149 -0
- package/backend/node_modules/@types/node/tls.d.ts +1193 -0
- package/backend/node_modules/@types/node/trace_events.d.ts +103 -0
- package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
- package/backend/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
- package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
- package/backend/node_modules/@types/node/ts5.6/index.d.ts +119 -0
- package/backend/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
- package/backend/node_modules/@types/node/ts5.7/index.d.ts +119 -0
- package/backend/node_modules/@types/node/tty.d.ts +225 -0
- package/backend/node_modules/@types/node/url.d.ts +556 -0
- package/backend/node_modules/@types/node/util/types.d.ts +558 -0
- package/backend/node_modules/@types/node/util.d.ts +1677 -0
- package/backend/node_modules/@types/node/v8.d.ts +980 -0
- package/backend/node_modules/@types/node/vm.d.ts +1136 -0
- package/backend/node_modules/@types/node/wasi.d.ts +131 -0
- package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
- package/backend/node_modules/@types/node/web-globals/blob.d.ts +23 -0
- package/backend/node_modules/@types/node/web-globals/console.d.ts +9 -0
- package/backend/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
- package/backend/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/backend/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
- package/backend/node_modules/@types/node/web-globals/events.d.ts +106 -0
- package/backend/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
- package/backend/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
- package/backend/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
- package/backend/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
- package/backend/node_modules/@types/node/web-globals/performance.d.ts +45 -0
- package/backend/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/backend/node_modules/@types/node/web-globals/streams.d.ts +115 -0
- package/backend/node_modules/@types/node/web-globals/timers.d.ts +44 -0
- package/backend/node_modules/@types/node/web-globals/url.d.ts +24 -0
- package/backend/node_modules/@types/node/worker_threads.d.ts +671 -0
- package/backend/node_modules/@types/node/zlib/iter.d.ts +131 -0
- package/backend/node_modules/@types/node/zlib.d.ts +589 -0
- package/backend/node_modules/accepts/HISTORY.md +250 -0
- package/backend/node_modules/accepts/LICENSE +23 -0
- package/backend/node_modules/accepts/README.md +140 -0
- package/backend/node_modules/accepts/index.js +238 -0
- package/backend/node_modules/accepts/package.json +47 -0
- package/backend/node_modules/anymatch/LICENSE +15 -0
- package/backend/node_modules/anymatch/README.md +87 -0
- package/backend/node_modules/anymatch/index.d.ts +20 -0
- package/backend/node_modules/anymatch/index.js +104 -0
- package/backend/node_modules/anymatch/package.json +48 -0
- package/backend/node_modules/aws-ssl-profiles/LICENSE +19 -0
- package/backend/node_modules/aws-ssl-profiles/README.md +146 -0
- package/backend/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
- package/backend/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
- package/backend/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
- package/backend/node_modules/aws-ssl-profiles/lib/index.js +13 -0
- package/backend/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
- package/backend/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
- package/backend/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
- package/backend/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
- package/backend/node_modules/aws-ssl-profiles/package.json +52 -0
- package/backend/node_modules/balanced-match/LICENSE.md +23 -0
- package/backend/node_modules/balanced-match/README.md +57 -0
- package/backend/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
- package/backend/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
- package/backend/node_modules/balanced-match/dist/commonjs/index.js +59 -0
- package/backend/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
- package/backend/node_modules/balanced-match/dist/commonjs/package.json +3 -0
- package/backend/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
- package/backend/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
- package/backend/node_modules/balanced-match/dist/esm/index.js +54 -0
- package/backend/node_modules/balanced-match/dist/esm/index.js.map +1 -0
- package/backend/node_modules/balanced-match/dist/esm/package.json +3 -0
- package/backend/node_modules/balanced-match/package.json +68 -0
- package/backend/node_modules/bcrypt/.dockerignore +6 -0
- package/backend/node_modules/bcrypt/.editorconfig +19 -0
- package/backend/node_modules/bcrypt/.github/workflows/build-pack-publish.yml +110 -0
- package/backend/node_modules/bcrypt/.github/workflows/ci.yaml +42 -0
- package/backend/node_modules/bcrypt/CHANGELOG.md +184 -0
- package/backend/node_modules/bcrypt/Dockerfile +57 -0
- package/backend/node_modules/bcrypt/Dockerfile-alpine +41 -0
- package/backend/node_modules/bcrypt/ISSUE_TEMPLATE.md +18 -0
- package/backend/node_modules/bcrypt/LICENSE +19 -0
- package/backend/node_modules/bcrypt/Makefile +19 -0
- package/backend/node_modules/bcrypt/README.md +388 -0
- package/backend/node_modules/bcrypt/SECURITY.md +15 -0
- package/backend/node_modules/bcrypt/bcrypt.js +242 -0
- package/backend/node_modules/bcrypt/binding.gyp +49 -0
- package/backend/node_modules/bcrypt/build-all.sh +37 -0
- package/backend/node_modules/bcrypt/examples/async_compare.js +28 -0
- package/backend/node_modules/bcrypt/examples/forever_gen_salt.js +8 -0
- package/backend/node_modules/bcrypt/package.json +62 -0
- package/backend/node_modules/bcrypt/prebuilds/darwin-arm64/bcrypt.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/darwin-x64/bcrypt.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-arm/bcrypt.glibc.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-arm/bcrypt.musl.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-arm64/bcrypt.glibc.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-arm64/bcrypt.musl.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-x64/bcrypt.glibc.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/linux-x64/bcrypt.musl.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/win32-arm64/bcrypt.node +0 -0
- package/backend/node_modules/bcrypt/prebuilds/win32-x64/bcrypt.node +0 -0
- package/backend/node_modules/bcrypt/promises.js +45 -0
- package/backend/node_modules/bcrypt/src/bcrypt.cc +315 -0
- package/backend/node_modules/bcrypt/src/bcrypt_node.cc +288 -0
- package/backend/node_modules/bcrypt/src/blowfish.cc +679 -0
- package/backend/node_modules/bcrypt/src/node_blf.h +132 -0
- package/backend/node_modules/bcrypt/test/async.test.js +209 -0
- package/backend/node_modules/bcrypt/test/implementation.test.js +48 -0
- package/backend/node_modules/bcrypt/test/promise.test.js +168 -0
- package/backend/node_modules/bcrypt/test/repetitions.test.js +55 -0
- package/backend/node_modules/bcrypt/test/sync.test.js +125 -0
- package/backend/node_modules/bcryptjs/LICENSE +27 -0
- package/backend/node_modules/bcryptjs/README.md +201 -0
- package/backend/node_modules/bcryptjs/bin/bcrypt +23 -0
- package/backend/node_modules/bcryptjs/index.d.ts +3 -0
- package/backend/node_modules/bcryptjs/index.js +1159 -0
- package/backend/node_modules/bcryptjs/package.json +76 -0
- package/backend/node_modules/bcryptjs/types.d.ts +157 -0
- package/backend/node_modules/bcryptjs/umd/index.d.ts +3 -0
- package/backend/node_modules/bcryptjs/umd/index.js +1220 -0
- package/backend/node_modules/bcryptjs/umd/package.json +3 -0
- package/backend/node_modules/bcryptjs/umd/types.d.ts +157 -0
- package/backend/node_modules/binary-extensions/binary-extensions.json +263 -0
- package/backend/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/backend/node_modules/binary-extensions/index.d.ts +14 -0
- package/backend/node_modules/binary-extensions/index.js +1 -0
- package/backend/node_modules/binary-extensions/license +10 -0
- package/backend/node_modules/binary-extensions/package.json +40 -0
- package/backend/node_modules/binary-extensions/readme.md +25 -0
- package/backend/node_modules/body-parser/LICENSE +23 -0
- package/backend/node_modules/body-parser/README.md +494 -0
- package/backend/node_modules/body-parser/index.js +71 -0
- package/backend/node_modules/body-parser/lib/read.js +247 -0
- package/backend/node_modules/body-parser/lib/types/json.js +158 -0
- package/backend/node_modules/body-parser/lib/types/raw.js +42 -0
- package/backend/node_modules/body-parser/lib/types/text.js +36 -0
- package/backend/node_modules/body-parser/lib/types/urlencoded.js +142 -0
- package/backend/node_modules/body-parser/lib/utils.js +98 -0
- package/backend/node_modules/body-parser/package.json +52 -0
- package/backend/node_modules/brace-expansion/LICENSE +23 -0
- package/backend/node_modules/brace-expansion/README.md +94 -0
- package/backend/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
- package/backend/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
- package/backend/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
- package/backend/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
- package/backend/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
- package/backend/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
- package/backend/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
- package/backend/node_modules/brace-expansion/dist/esm/index.js +197 -0
- package/backend/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
- package/backend/node_modules/brace-expansion/dist/esm/package.json +3 -0
- package/backend/node_modules/brace-expansion/package.json +64 -0
- package/backend/node_modules/braces/LICENSE +21 -0
- package/backend/node_modules/braces/README.md +586 -0
- package/backend/node_modules/braces/index.js +170 -0
- package/backend/node_modules/braces/lib/compile.js +60 -0
- package/backend/node_modules/braces/lib/constants.js +57 -0
- package/backend/node_modules/braces/lib/expand.js +113 -0
- package/backend/node_modules/braces/lib/parse.js +331 -0
- package/backend/node_modules/braces/lib/stringify.js +32 -0
- package/backend/node_modules/braces/lib/utils.js +122 -0
- package/backend/node_modules/braces/package.json +77 -0
- package/backend/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
- package/backend/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
- package/backend/node_modules/buffer-equal-constant-time/README.md +50 -0
- package/backend/node_modules/buffer-equal-constant-time/index.js +41 -0
- package/backend/node_modules/buffer-equal-constant-time/package.json +21 -0
- package/backend/node_modules/buffer-equal-constant-time/test.js +42 -0
- package/backend/node_modules/bytes/History.md +97 -0
- package/backend/node_modules/bytes/LICENSE +23 -0
- package/backend/node_modules/bytes/Readme.md +152 -0
- package/backend/node_modules/bytes/index.js +170 -0
- package/backend/node_modules/bytes/package.json +42 -0
- package/backend/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/backend/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/backend/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/backend/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/backend/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/backend/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/backend/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/backend/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/backend/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/backend/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/backend/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/backend/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/backend/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/backend/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/backend/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/backend/node_modules/call-bound/.eslintrc +13 -0
- package/backend/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/backend/node_modules/call-bound/.nycrc +9 -0
- package/backend/node_modules/call-bound/CHANGELOG.md +42 -0
- package/backend/node_modules/call-bound/LICENSE +21 -0
- package/backend/node_modules/call-bound/README.md +53 -0
- package/backend/node_modules/call-bound/index.d.ts +94 -0
- package/backend/node_modules/call-bound/index.js +19 -0
- package/backend/node_modules/call-bound/package.json +99 -0
- package/backend/node_modules/call-bound/test/index.js +61 -0
- package/backend/node_modules/call-bound/tsconfig.json +10 -0
- package/backend/node_modules/chokidar/LICENSE +21 -0
- package/backend/node_modules/chokidar/README.md +308 -0
- package/backend/node_modules/chokidar/index.js +973 -0
- package/backend/node_modules/chokidar/lib/constants.js +66 -0
- package/backend/node_modules/chokidar/lib/fsevents-handler.js +526 -0
- package/backend/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/backend/node_modules/chokidar/package.json +70 -0
- package/backend/node_modules/chokidar/types/index.d.ts +192 -0
- package/backend/node_modules/content-disposition/LICENSE +22 -0
- package/backend/node_modules/content-disposition/README.md +141 -0
- package/backend/node_modules/content-disposition/index.js +536 -0
- package/backend/node_modules/content-disposition/package.json +40 -0
- package/backend/node_modules/content-type/HISTORY.md +29 -0
- package/backend/node_modules/content-type/LICENSE +22 -0
- package/backend/node_modules/content-type/README.md +94 -0
- package/backend/node_modules/content-type/index.js +225 -0
- package/backend/node_modules/content-type/package.json +42 -0
- package/backend/node_modules/cookie/LICENSE +24 -0
- package/backend/node_modules/cookie/README.md +317 -0
- package/backend/node_modules/cookie/SECURITY.md +25 -0
- package/backend/node_modules/cookie/index.js +335 -0
- package/backend/node_modules/cookie/package.json +44 -0
- package/backend/node_modules/cookie-signature/History.md +70 -0
- package/backend/node_modules/cookie-signature/LICENSE +22 -0
- package/backend/node_modules/cookie-signature/Readme.md +23 -0
- package/backend/node_modules/cookie-signature/index.js +47 -0
- package/backend/node_modules/cookie-signature/package.json +24 -0
- package/backend/node_modules/cors/LICENSE +22 -0
- package/backend/node_modules/cors/README.md +277 -0
- package/backend/node_modules/cors/lib/index.js +238 -0
- package/backend/node_modules/cors/package.json +42 -0
- package/backend/node_modules/debug/LICENSE +20 -0
- package/backend/node_modules/debug/README.md +481 -0
- package/backend/node_modules/debug/package.json +64 -0
- package/backend/node_modules/debug/src/browser.js +272 -0
- package/backend/node_modules/debug/src/common.js +292 -0
- package/backend/node_modules/debug/src/index.js +10 -0
- package/backend/node_modules/debug/src/node.js +263 -0
- package/backend/node_modules/denque/CHANGELOG.md +29 -0
- package/backend/node_modules/denque/LICENSE +201 -0
- package/backend/node_modules/denque/README.md +77 -0
- package/backend/node_modules/denque/index.d.ts +47 -0
- package/backend/node_modules/denque/index.js +481 -0
- package/backend/node_modules/denque/package.json +58 -0
- package/backend/node_modules/depd/History.md +103 -0
- package/backend/node_modules/depd/LICENSE +22 -0
- package/backend/node_modules/depd/Readme.md +280 -0
- package/backend/node_modules/depd/index.js +538 -0
- package/backend/node_modules/depd/lib/browser/index.js +77 -0
- package/backend/node_modules/depd/package.json +45 -0
- package/backend/node_modules/dunder-proto/.eslintrc +5 -0
- package/backend/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/backend/node_modules/dunder-proto/.nycrc +13 -0
- package/backend/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/backend/node_modules/dunder-proto/LICENSE +21 -0
- package/backend/node_modules/dunder-proto/README.md +54 -0
- package/backend/node_modules/dunder-proto/get.d.ts +5 -0
- package/backend/node_modules/dunder-proto/get.js +30 -0
- package/backend/node_modules/dunder-proto/package.json +76 -0
- package/backend/node_modules/dunder-proto/set.d.ts +5 -0
- package/backend/node_modules/dunder-proto/set.js +35 -0
- package/backend/node_modules/dunder-proto/test/get.js +34 -0
- package/backend/node_modules/dunder-proto/test/index.js +4 -0
- package/backend/node_modules/dunder-proto/test/set.js +50 -0
- package/backend/node_modules/dunder-proto/tsconfig.json +9 -0
- package/backend/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
- package/backend/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
- package/backend/node_modules/ecdsa-sig-formatter/README.md +65 -0
- package/backend/node_modules/ecdsa-sig-formatter/package.json +46 -0
- package/backend/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
- package/backend/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
- package/backend/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
- package/backend/node_modules/ee-first/LICENSE +22 -0
- package/backend/node_modules/ee-first/README.md +80 -0
- package/backend/node_modules/ee-first/index.js +95 -0
- package/backend/node_modules/ee-first/package.json +29 -0
- package/backend/node_modules/encodeurl/LICENSE +22 -0
- package/backend/node_modules/encodeurl/README.md +109 -0
- package/backend/node_modules/encodeurl/index.js +60 -0
- package/backend/node_modules/encodeurl/package.json +40 -0
- package/backend/node_modules/es-define-property/.eslintrc +13 -0
- package/backend/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-define-property/.nycrc +9 -0
- package/backend/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/backend/node_modules/es-define-property/LICENSE +21 -0
- package/backend/node_modules/es-define-property/README.md +49 -0
- package/backend/node_modules/es-define-property/index.d.ts +3 -0
- package/backend/node_modules/es-define-property/index.js +14 -0
- package/backend/node_modules/es-define-property/package.json +81 -0
- package/backend/node_modules/es-define-property/test/index.js +56 -0
- package/backend/node_modules/es-define-property/tsconfig.json +10 -0
- package/backend/node_modules/es-errors/.eslintrc +5 -0
- package/backend/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-errors/CHANGELOG.md +40 -0
- package/backend/node_modules/es-errors/LICENSE +21 -0
- package/backend/node_modules/es-errors/README.md +55 -0
- package/backend/node_modules/es-errors/eval.d.ts +3 -0
- package/backend/node_modules/es-errors/eval.js +4 -0
- package/backend/node_modules/es-errors/index.d.ts +3 -0
- package/backend/node_modules/es-errors/index.js +4 -0
- package/backend/node_modules/es-errors/package.json +80 -0
- package/backend/node_modules/es-errors/range.d.ts +3 -0
- package/backend/node_modules/es-errors/range.js +4 -0
- package/backend/node_modules/es-errors/ref.d.ts +3 -0
- package/backend/node_modules/es-errors/ref.js +4 -0
- package/backend/node_modules/es-errors/syntax.d.ts +3 -0
- package/backend/node_modules/es-errors/syntax.js +4 -0
- package/backend/node_modules/es-errors/test/index.js +19 -0
- package/backend/node_modules/es-errors/tsconfig.json +49 -0
- package/backend/node_modules/es-errors/type.d.ts +3 -0
- package/backend/node_modules/es-errors/type.js +4 -0
- package/backend/node_modules/es-errors/uri.d.ts +3 -0
- package/backend/node_modules/es-errors/uri.js +4 -0
- package/backend/node_modules/es-object-atoms/.eslintrc +16 -0
- package/backend/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/backend/node_modules/es-object-atoms/LICENSE +21 -0
- package/backend/node_modules/es-object-atoms/README.md +63 -0
- package/backend/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/backend/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/backend/node_modules/es-object-atoms/ToObject.js +10 -0
- package/backend/node_modules/es-object-atoms/index.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/index.js +4 -0
- package/backend/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/isObject.js +6 -0
- package/backend/node_modules/es-object-atoms/package.json +80 -0
- package/backend/node_modules/es-object-atoms/test/index.js +38 -0
- package/backend/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/backend/node_modules/escape-html/LICENSE +24 -0
- package/backend/node_modules/escape-html/Readme.md +43 -0
- package/backend/node_modules/escape-html/index.js +78 -0
- package/backend/node_modules/escape-html/package.json +24 -0
- package/backend/node_modules/etag/HISTORY.md +83 -0
- package/backend/node_modules/etag/LICENSE +22 -0
- package/backend/node_modules/etag/README.md +159 -0
- package/backend/node_modules/etag/index.js +131 -0
- package/backend/node_modules/etag/package.json +47 -0
- package/backend/node_modules/express/LICENSE +24 -0
- package/backend/node_modules/express/Readme.md +276 -0
- package/backend/node_modules/express/index.js +11 -0
- package/backend/node_modules/express/lib/application.js +631 -0
- package/backend/node_modules/express/lib/express.js +81 -0
- package/backend/node_modules/express/lib/request.js +514 -0
- package/backend/node_modules/express/lib/response.js +1053 -0
- package/backend/node_modules/express/lib/utils.js +271 -0
- package/backend/node_modules/express/lib/view.js +205 -0
- package/backend/node_modules/express/package.json +99 -0
- package/backend/node_modules/fill-range/LICENSE +21 -0
- package/backend/node_modules/fill-range/README.md +237 -0
- package/backend/node_modules/fill-range/index.js +248 -0
- package/backend/node_modules/fill-range/package.json +74 -0
- package/backend/node_modules/finalhandler/HISTORY.md +239 -0
- package/backend/node_modules/finalhandler/LICENSE +22 -0
- package/backend/node_modules/finalhandler/README.md +150 -0
- package/backend/node_modules/finalhandler/index.js +293 -0
- package/backend/node_modules/finalhandler/package.json +47 -0
- package/backend/node_modules/forwarded/HISTORY.md +21 -0
- package/backend/node_modules/forwarded/LICENSE +22 -0
- package/backend/node_modules/forwarded/README.md +57 -0
- package/backend/node_modules/forwarded/index.js +90 -0
- package/backend/node_modules/forwarded/package.json +45 -0
- package/backend/node_modules/fresh/HISTORY.md +80 -0
- package/backend/node_modules/fresh/LICENSE +23 -0
- package/backend/node_modules/fresh/README.md +117 -0
- package/backend/node_modules/fresh/index.js +136 -0
- package/backend/node_modules/fresh/package.json +46 -0
- package/backend/node_modules/function-bind/.eslintrc +21 -0
- package/backend/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/backend/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/backend/node_modules/function-bind/.nycrc +13 -0
- package/backend/node_modules/function-bind/CHANGELOG.md +136 -0
- package/backend/node_modules/function-bind/LICENSE +20 -0
- package/backend/node_modules/function-bind/README.md +46 -0
- package/backend/node_modules/function-bind/implementation.js +84 -0
- package/backend/node_modules/function-bind/index.js +5 -0
- package/backend/node_modules/function-bind/package.json +87 -0
- package/backend/node_modules/function-bind/test/.eslintrc +9 -0
- package/backend/node_modules/function-bind/test/index.js +252 -0
- package/backend/node_modules/generate-function/.travis.yml +3 -0
- package/backend/node_modules/generate-function/LICENSE +21 -0
- package/backend/node_modules/generate-function/README.md +89 -0
- package/backend/node_modules/generate-function/example.js +27 -0
- package/backend/node_modules/generate-function/index.js +181 -0
- package/backend/node_modules/generate-function/package.json +32 -0
- package/backend/node_modules/generate-function/test.js +49 -0
- package/backend/node_modules/get-intrinsic/.eslintrc +42 -0
- package/backend/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/backend/node_modules/get-intrinsic/.nycrc +9 -0
- package/backend/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/backend/node_modules/get-intrinsic/LICENSE +21 -0
- package/backend/node_modules/get-intrinsic/README.md +71 -0
- package/backend/node_modules/get-intrinsic/index.js +378 -0
- package/backend/node_modules/get-intrinsic/package.json +97 -0
- package/backend/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/backend/node_modules/get-proto/.eslintrc +10 -0
- package/backend/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/backend/node_modules/get-proto/.nycrc +9 -0
- package/backend/node_modules/get-proto/CHANGELOG.md +21 -0
- package/backend/node_modules/get-proto/LICENSE +21 -0
- package/backend/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/backend/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/backend/node_modules/get-proto/README.md +50 -0
- package/backend/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/backend/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/backend/node_modules/get-proto/index.d.ts +5 -0
- package/backend/node_modules/get-proto/index.js +27 -0
- package/backend/node_modules/get-proto/package.json +81 -0
- package/backend/node_modules/get-proto/test/index.js +68 -0
- package/backend/node_modules/get-proto/tsconfig.json +9 -0
- package/backend/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/backend/node_modules/glob-parent/LICENSE +15 -0
- package/backend/node_modules/glob-parent/README.md +137 -0
- package/backend/node_modules/glob-parent/index.js +42 -0
- package/backend/node_modules/glob-parent/package.json +48 -0
- package/backend/node_modules/gopd/.eslintrc +16 -0
- package/backend/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/backend/node_modules/gopd/CHANGELOG.md +45 -0
- package/backend/node_modules/gopd/LICENSE +21 -0
- package/backend/node_modules/gopd/README.md +40 -0
- package/backend/node_modules/gopd/gOPD.d.ts +1 -0
- package/backend/node_modules/gopd/gOPD.js +4 -0
- package/backend/node_modules/gopd/index.d.ts +5 -0
- package/backend/node_modules/gopd/index.js +15 -0
- package/backend/node_modules/gopd/package.json +77 -0
- package/backend/node_modules/gopd/test/index.js +36 -0
- package/backend/node_modules/gopd/tsconfig.json +9 -0
- package/backend/node_modules/has-flag/index.js +8 -0
- package/backend/node_modules/has-flag/license +9 -0
- package/backend/node_modules/has-flag/package.json +44 -0
- package/backend/node_modules/has-flag/readme.md +70 -0
- package/backend/node_modules/has-symbols/.eslintrc +11 -0
- package/backend/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/backend/node_modules/has-symbols/.nycrc +9 -0
- package/backend/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/backend/node_modules/has-symbols/LICENSE +21 -0
- package/backend/node_modules/has-symbols/README.md +46 -0
- package/backend/node_modules/has-symbols/index.d.ts +3 -0
- package/backend/node_modules/has-symbols/index.js +14 -0
- package/backend/node_modules/has-symbols/package.json +111 -0
- package/backend/node_modules/has-symbols/shams.d.ts +3 -0
- package/backend/node_modules/has-symbols/shams.js +45 -0
- package/backend/node_modules/has-symbols/test/index.js +22 -0
- package/backend/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/backend/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/backend/node_modules/has-symbols/test/tests.js +58 -0
- package/backend/node_modules/has-symbols/tsconfig.json +10 -0
- package/backend/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/backend/node_modules/hasown/.nycrc +13 -0
- package/backend/node_modules/hasown/CHANGELOG.md +51 -0
- package/backend/node_modules/hasown/LICENSE +21 -0
- package/backend/node_modules/hasown/README.md +40 -0
- package/backend/node_modules/hasown/eslint.config.mjs +6 -0
- package/backend/node_modules/hasown/index.d.ts +4 -0
- package/backend/node_modules/hasown/index.js +8 -0
- package/backend/node_modules/hasown/package.json +92 -0
- package/backend/node_modules/hasown/tsconfig.json +6 -0
- package/backend/node_modules/http-errors/HISTORY.md +186 -0
- package/backend/node_modules/http-errors/LICENSE +23 -0
- package/backend/node_modules/http-errors/README.md +169 -0
- package/backend/node_modules/http-errors/index.js +290 -0
- package/backend/node_modules/http-errors/package.json +54 -0
- package/backend/node_modules/iconv-lite/LICENSE +21 -0
- package/backend/node_modules/iconv-lite/README.md +138 -0
- package/backend/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
- package/backend/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
- package/backend/node_modules/iconv-lite/encodings/index.js +23 -0
- package/backend/node_modules/iconv-lite/encodings/internal.js +218 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
- package/backend/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/backend/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/backend/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/backend/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/backend/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/backend/node_modules/iconv-lite/encodings/utf16.js +187 -0
- package/backend/node_modules/iconv-lite/encodings/utf32.js +307 -0
- package/backend/node_modules/iconv-lite/encodings/utf7.js +283 -0
- package/backend/node_modules/iconv-lite/lib/bom-handling.js +48 -0
- package/backend/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
- package/backend/node_modules/iconv-lite/lib/index.d.ts +129 -0
- package/backend/node_modules/iconv-lite/lib/index.js +182 -0
- package/backend/node_modules/iconv-lite/lib/streams.js +105 -0
- package/backend/node_modules/iconv-lite/package.json +70 -0
- package/backend/node_modules/iconv-lite/types/encodings.d.ts +423 -0
- package/backend/node_modules/ignore-by-default/LICENSE +14 -0
- package/backend/node_modules/ignore-by-default/README.md +26 -0
- package/backend/node_modules/ignore-by-default/index.js +12 -0
- package/backend/node_modules/ignore-by-default/package.json +34 -0
- package/backend/node_modules/inherits/LICENSE +16 -0
- package/backend/node_modules/inherits/README.md +42 -0
- package/backend/node_modules/inherits/inherits.js +9 -0
- package/backend/node_modules/inherits/inherits_browser.js +27 -0
- package/backend/node_modules/inherits/package.json +29 -0
- package/backend/node_modules/ipaddr.js/LICENSE +19 -0
- package/backend/node_modules/ipaddr.js/README.md +233 -0
- package/backend/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/backend/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/backend/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/backend/node_modules/ipaddr.js/package.json +35 -0
- package/backend/node_modules/is-binary-path/index.d.ts +17 -0
- package/backend/node_modules/is-binary-path/index.js +7 -0
- package/backend/node_modules/is-binary-path/license +9 -0
- package/backend/node_modules/is-binary-path/package.json +40 -0
- package/backend/node_modules/is-binary-path/readme.md +34 -0
- package/backend/node_modules/is-extglob/LICENSE +21 -0
- package/backend/node_modules/is-extglob/README.md +107 -0
- package/backend/node_modules/is-extglob/index.js +20 -0
- package/backend/node_modules/is-extglob/package.json +69 -0
- package/backend/node_modules/is-glob/LICENSE +21 -0
- package/backend/node_modules/is-glob/README.md +206 -0
- package/backend/node_modules/is-glob/index.js +150 -0
- package/backend/node_modules/is-glob/package.json +81 -0
- package/backend/node_modules/is-number/LICENSE +21 -0
- package/backend/node_modules/is-number/README.md +187 -0
- package/backend/node_modules/is-number/index.js +18 -0
- package/backend/node_modules/is-number/package.json +82 -0
- package/backend/node_modules/is-promise/LICENSE +19 -0
- package/backend/node_modules/is-promise/index.d.ts +2 -0
- package/backend/node_modules/is-promise/index.js +6 -0
- package/backend/node_modules/is-promise/index.mjs +3 -0
- package/backend/node_modules/is-promise/package.json +30 -0
- package/backend/node_modules/is-promise/readme.md +33 -0
- package/backend/node_modules/is-property/LICENSE +22 -0
- package/backend/node_modules/is-property/README.md +28 -0
- package/backend/node_modules/is-property/is-property.js +5 -0
- package/backend/node_modules/is-property/package.json +36 -0
- package/backend/node_modules/json/.gitmodules +3 -0
- package/backend/node_modules/json/.jshintrc +3 -0
- package/backend/node_modules/json/CHANGES.md +1050 -0
- package/backend/node_modules/json/LICENSE.txt +24 -0
- package/backend/node_modules/json/README.md +122 -0
- package/backend/node_modules/json/lib/json.js +1765 -0
- package/backend/node_modules/json/man/man1/json.1 +1151 -0
- package/backend/node_modules/json/package.json +38 -0
- package/backend/node_modules/jsonwebtoken/LICENSE +21 -0
- package/backend/node_modules/jsonwebtoken/README.md +396 -0
- package/backend/node_modules/jsonwebtoken/decode.js +30 -0
- package/backend/node_modules/jsonwebtoken/index.js +8 -0
- package/backend/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
- package/backend/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
- package/backend/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
- package/backend/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
- package/backend/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
- package/backend/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
- package/backend/node_modules/jsonwebtoken/lib/timespan.js +18 -0
- package/backend/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
- package/backend/node_modules/jsonwebtoken/package.json +70 -0
- package/backend/node_modules/jsonwebtoken/sign.js +253 -0
- package/backend/node_modules/jsonwebtoken/verify.js +263 -0
- package/backend/node_modules/jwa/LICENSE +17 -0
- package/backend/node_modules/jwa/README.md +150 -0
- package/backend/node_modules/jwa/index.js +266 -0
- package/backend/node_modules/jwa/opslevel.yml +6 -0
- package/backend/node_modules/jwa/package.json +37 -0
- package/backend/node_modules/jws/CHANGELOG.md +56 -0
- package/backend/node_modules/jws/LICENSE +17 -0
- package/backend/node_modules/jws/index.js +22 -0
- package/backend/node_modules/jws/lib/data-stream.js +55 -0
- package/backend/node_modules/jws/lib/sign-stream.js +83 -0
- package/backend/node_modules/jws/lib/tostring.js +10 -0
- package/backend/node_modules/jws/lib/verify-stream.js +125 -0
- package/backend/node_modules/jws/opslevel.yml +6 -0
- package/backend/node_modules/jws/package.json +34 -0
- package/backend/node_modules/jws/readme.md +255 -0
- package/backend/node_modules/lodash.includes/LICENSE +47 -0
- package/backend/node_modules/lodash.includes/README.md +18 -0
- package/backend/node_modules/lodash.includes/index.js +745 -0
- package/backend/node_modules/lodash.includes/package.json +17 -0
- package/backend/node_modules/lodash.isboolean/LICENSE +22 -0
- package/backend/node_modules/lodash.isboolean/README.md +18 -0
- package/backend/node_modules/lodash.isboolean/index.js +70 -0
- package/backend/node_modules/lodash.isboolean/package.json +17 -0
- package/backend/node_modules/lodash.isinteger/LICENSE +47 -0
- package/backend/node_modules/lodash.isinteger/README.md +18 -0
- package/backend/node_modules/lodash.isinteger/index.js +265 -0
- package/backend/node_modules/lodash.isinteger/package.json +17 -0
- package/backend/node_modules/lodash.isnumber/LICENSE +22 -0
- package/backend/node_modules/lodash.isnumber/README.md +18 -0
- package/backend/node_modules/lodash.isnumber/index.js +79 -0
- package/backend/node_modules/lodash.isnumber/package.json +17 -0
- package/backend/node_modules/lodash.isplainobject/LICENSE +47 -0
- package/backend/node_modules/lodash.isplainobject/README.md +18 -0
- package/backend/node_modules/lodash.isplainobject/index.js +139 -0
- package/backend/node_modules/lodash.isplainobject/package.json +17 -0
- package/backend/node_modules/lodash.isstring/LICENSE +22 -0
- package/backend/node_modules/lodash.isstring/README.md +18 -0
- package/backend/node_modules/lodash.isstring/index.js +95 -0
- package/backend/node_modules/lodash.isstring/package.json +17 -0
- package/backend/node_modules/lodash.once/LICENSE +47 -0
- package/backend/node_modules/lodash.once/README.md +18 -0
- package/backend/node_modules/lodash.once/index.js +294 -0
- package/backend/node_modules/lodash.once/package.json +17 -0
- package/backend/node_modules/long/LICENSE +202 -0
- package/backend/node_modules/long/README.md +286 -0
- package/backend/node_modules/long/index.d.ts +2 -0
- package/backend/node_modules/long/index.js +1581 -0
- package/backend/node_modules/long/package.json +58 -0
- package/backend/node_modules/long/types.d.ts +474 -0
- package/backend/node_modules/long/umd/index.d.ts +3 -0
- package/backend/node_modules/long/umd/index.js +1622 -0
- package/backend/node_modules/long/umd/package.json +3 -0
- package/backend/node_modules/long/umd/types.d.ts +474 -0
- package/backend/node_modules/lru.min/LICENSE +21 -0
- package/backend/node_modules/lru.min/README.md +392 -0
- package/backend/node_modules/lru.min/browser/lru.min.js +1 -0
- package/backend/node_modules/lru.min/lib/index.d.ts +38 -0
- package/backend/node_modules/lru.min/lib/index.js +248 -0
- package/backend/node_modules/lru.min/lib/index.mjs +227 -0
- package/backend/node_modules/lru.min/package.json +87 -0
- package/backend/node_modules/math-intrinsics/.eslintrc +16 -0
- package/backend/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/backend/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/backend/node_modules/math-intrinsics/LICENSE +21 -0
- package/backend/node_modules/math-intrinsics/README.md +50 -0
- package/backend/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/abs.js +4 -0
- package/backend/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/backend/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/backend/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/floor.js +4 -0
- package/backend/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isFinite.js +12 -0
- package/backend/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isInteger.js +16 -0
- package/backend/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/isNaN.js +6 -0
- package/backend/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/backend/node_modules/math-intrinsics/max.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/max.js +4 -0
- package/backend/node_modules/math-intrinsics/min.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/min.js +4 -0
- package/backend/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/mod.js +9 -0
- package/backend/node_modules/math-intrinsics/package.json +86 -0
- package/backend/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/pow.js +4 -0
- package/backend/node_modules/math-intrinsics/round.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/round.js +4 -0
- package/backend/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/sign.js +11 -0
- package/backend/node_modules/math-intrinsics/test/index.js +192 -0
- package/backend/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/backend/node_modules/media-typer/HISTORY.md +50 -0
- package/backend/node_modules/media-typer/LICENSE +22 -0
- package/backend/node_modules/media-typer/README.md +93 -0
- package/backend/node_modules/media-typer/index.js +143 -0
- package/backend/node_modules/media-typer/package.json +33 -0
- package/backend/node_modules/merge-descriptors/index.d.ts +11 -0
- package/backend/node_modules/merge-descriptors/index.js +26 -0
- package/backend/node_modules/merge-descriptors/license +11 -0
- package/backend/node_modules/merge-descriptors/package.json +50 -0
- package/backend/node_modules/merge-descriptors/readme.md +55 -0
- package/backend/node_modules/mime-db/HISTORY.md +541 -0
- package/backend/node_modules/mime-db/LICENSE +23 -0
- package/backend/node_modules/mime-db/README.md +109 -0
- package/backend/node_modules/mime-db/db.json +9342 -0
- package/backend/node_modules/mime-db/index.js +12 -0
- package/backend/node_modules/mime-db/package.json +56 -0
- package/backend/node_modules/mime-types/HISTORY.md +428 -0
- package/backend/node_modules/mime-types/LICENSE +23 -0
- package/backend/node_modules/mime-types/README.md +126 -0
- package/backend/node_modules/mime-types/index.js +211 -0
- package/backend/node_modules/mime-types/mimeScore.js +57 -0
- package/backend/node_modules/mime-types/package.json +49 -0
- package/backend/node_modules/minimatch/LICENSE.md +55 -0
- package/backend/node_modules/minimatch/README.md +528 -0
- package/backend/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/backend/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/backend/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
- package/backend/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/ast.js +845 -0
- package/backend/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/backend/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
- package/backend/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
- package/backend/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/backend/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
- package/backend/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/index.js +1127 -0
- package/backend/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/backend/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
- package/backend/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/backend/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/backend/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/backend/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
- package/backend/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/ast.js +841 -0
- package/backend/node_modules/minimatch/dist/esm/ast.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/backend/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
- package/backend/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
- package/backend/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/backend/node_modules/minimatch/dist/esm/escape.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/index.d.ts +174 -0
- package/backend/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/index.js +1114 -0
- package/backend/node_modules/minimatch/dist/esm/index.js.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/package.json +3 -0
- package/backend/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
- package/backend/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
- package/backend/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/backend/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
- package/backend/node_modules/minimatch/package.json +73 -0
- package/backend/node_modules/ms/index.js +162 -0
- package/backend/node_modules/ms/license.md +21 -0
- package/backend/node_modules/ms/package.json +38 -0
- package/backend/node_modules/ms/readme.md +59 -0
- package/backend/node_modules/mysql2/License +19 -0
- package/backend/node_modules/mysql2/README.md +114 -0
- package/backend/node_modules/mysql2/index.d.ts +1 -0
- package/backend/node_modules/mysql2/index.js +77 -0
- package/backend/node_modules/mysql2/lib/auth_41.js +95 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
- package/backend/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
- package/backend/node_modules/mysql2/lib/base/connection.js +1139 -0
- package/backend/node_modules/mysql2/lib/base/pool.js +343 -0
- package/backend/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
- package/backend/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
- package/backend/node_modules/mysql2/lib/commands/change_user.js +68 -0
- package/backend/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
- package/backend/node_modules/mysql2/lib/commands/close_statement.js +18 -0
- package/backend/node_modules/mysql2/lib/commands/command.js +54 -0
- package/backend/node_modules/mysql2/lib/commands/execute.js +116 -0
- package/backend/node_modules/mysql2/lib/commands/index.js +29 -0
- package/backend/node_modules/mysql2/lib/commands/ping.js +36 -0
- package/backend/node_modules/mysql2/lib/commands/prepare.js +143 -0
- package/backend/node_modules/mysql2/lib/commands/query.js +365 -0
- package/backend/node_modules/mysql2/lib/commands/quit.js +29 -0
- package/backend/node_modules/mysql2/lib/commands/register_slave.js +27 -0
- package/backend/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
- package/backend/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
- package/backend/node_modules/mysql2/lib/compressed_protocol.js +153 -0
- package/backend/node_modules/mysql2/lib/connection.js +12 -0
- package/backend/node_modules/mysql2/lib/connection_config.js +300 -0
- package/backend/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
- package/backend/node_modules/mysql2/lib/constants/charsets.js +317 -0
- package/backend/node_modules/mysql2/lib/constants/client.js +39 -0
- package/backend/node_modules/mysql2/lib/constants/commands.js +37 -0
- package/backend/node_modules/mysql2/lib/constants/cursor.js +9 -0
- package/backend/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
- package/backend/node_modules/mysql2/lib/constants/errors.js +3973 -0
- package/backend/node_modules/mysql2/lib/constants/field_flags.js +20 -0
- package/backend/node_modules/mysql2/lib/constants/server_status.js +44 -0
- package/backend/node_modules/mysql2/lib/constants/session_track.js +11 -0
- package/backend/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
- package/backend/node_modules/mysql2/lib/constants/types.js +64 -0
- package/backend/node_modules/mysql2/lib/create_connection.js +10 -0
- package/backend/node_modules/mysql2/lib/create_pool.js +10 -0
- package/backend/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
- package/backend/node_modules/mysql2/lib/helpers.js +83 -0
- package/backend/node_modules/mysql2/lib/packet_parser.js +195 -0
- package/backend/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
- package/backend/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
- package/backend/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
- package/backend/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
- package/backend/node_modules/mysql2/lib/packets/binary_row.js +95 -0
- package/backend/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
- package/backend/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
- package/backend/node_modules/mysql2/lib/packets/change_user.js +97 -0
- package/backend/node_modules/mysql2/lib/packets/close_statement.js +21 -0
- package/backend/node_modules/mysql2/lib/packets/column_definition.js +291 -0
- package/backend/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
- package/backend/node_modules/mysql2/lib/packets/execute.js +177 -0
- package/backend/node_modules/mysql2/lib/packets/handshake.js +112 -0
- package/backend/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
- package/backend/node_modules/mysql2/lib/packets/index.js +154 -0
- package/backend/node_modules/mysql2/lib/packets/packet.js +978 -0
- package/backend/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
- package/backend/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
- package/backend/node_modules/mysql2/lib/packets/query.js +102 -0
- package/backend/node_modules/mysql2/lib/packets/register_slave.js +46 -0
- package/backend/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
- package/backend/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
- package/backend/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
- package/backend/node_modules/mysql2/lib/packets/text_row.js +47 -0
- package/backend/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
- package/backend/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
- package/backend/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
- package/backend/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
- package/backend/node_modules/mysql2/lib/parsers/string.js +50 -0
- package/backend/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
- package/backend/node_modules/mysql2/lib/pool.js +12 -0
- package/backend/node_modules/mysql2/lib/pool_cluster.js +375 -0
- package/backend/node_modules/mysql2/lib/pool_config.js +34 -0
- package/backend/node_modules/mysql2/lib/pool_connection.js +81 -0
- package/backend/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
- package/backend/node_modules/mysql2/lib/promise/connection.js +237 -0
- package/backend/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
- package/backend/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
- package/backend/node_modules/mysql2/lib/promise/pool.js +118 -0
- package/backend/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
- package/backend/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
- package/backend/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
- package/backend/node_modules/mysql2/lib/results_stream.js +38 -0
- package/backend/node_modules/mysql2/lib/server.js +37 -0
- package/backend/node_modules/mysql2/lib/tracing.js +81 -0
- package/backend/node_modules/mysql2/package.json +95 -0
- package/backend/node_modules/mysql2/promise.d.ts +141 -0
- package/backend/node_modules/mysql2/promise.js +209 -0
- package/backend/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
- package/backend/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
- package/backend/node_modules/mysql2/typings/mysql/info.txt +1 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
- package/backend/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
- package/backend/node_modules/named-placeholders/LICENSE +21 -0
- package/backend/node_modules/named-placeholders/README.md +27 -0
- package/backend/node_modules/named-placeholders/index.js +179 -0
- package/backend/node_modules/named-placeholders/package.json +36 -0
- package/backend/node_modules/negotiator/HISTORY.md +114 -0
- package/backend/node_modules/negotiator/LICENSE +24 -0
- package/backend/node_modules/negotiator/README.md +212 -0
- package/backend/node_modules/negotiator/index.js +83 -0
- package/backend/node_modules/negotiator/lib/charset.js +169 -0
- package/backend/node_modules/negotiator/lib/encoding.js +205 -0
- package/backend/node_modules/negotiator/lib/language.js +179 -0
- package/backend/node_modules/negotiator/lib/mediaType.js +294 -0
- package/backend/node_modules/negotiator/package.json +43 -0
- package/backend/node_modules/node-addon-api/LICENSE.md +9 -0
- package/backend/node_modules/node-addon-api/README.md +95 -0
- package/backend/node_modules/node-addon-api/common.gypi +21 -0
- package/backend/node_modules/node-addon-api/except.gypi +25 -0
- package/backend/node_modules/node-addon-api/index.js +14 -0
- package/backend/node_modules/node-addon-api/napi-inl.deprecated.h +186 -0
- package/backend/node_modules/node-addon-api/napi-inl.h +7181 -0
- package/backend/node_modules/node-addon-api/napi.h +3380 -0
- package/backend/node_modules/node-addon-api/node_addon_api.gyp +42 -0
- package/backend/node_modules/node-addon-api/node_api.gyp +9 -0
- package/backend/node_modules/node-addon-api/noexcept.gypi +26 -0
- package/backend/node_modules/node-addon-api/nothing.c +0 -0
- package/backend/node_modules/node-addon-api/package-support.json +21 -0
- package/backend/node_modules/node-addon-api/package.json +480 -0
- package/backend/node_modules/node-addon-api/tools/README.md +73 -0
- package/backend/node_modules/node-addon-api/tools/check-napi.js +99 -0
- package/backend/node_modules/node-addon-api/tools/clang-format.js +71 -0
- package/backend/node_modules/node-addon-api/tools/conversion.js +301 -0
- package/backend/node_modules/node-gyp-build/LICENSE +21 -0
- package/backend/node_modules/node-gyp-build/README.md +58 -0
- package/backend/node_modules/node-gyp-build/SECURITY.md +5 -0
- package/backend/node_modules/node-gyp-build/bin.js +84 -0
- package/backend/node_modules/node-gyp-build/build-test.js +19 -0
- package/backend/node_modules/node-gyp-build/index.js +6 -0
- package/backend/node_modules/node-gyp-build/node-gyp-build.js +207 -0
- package/backend/node_modules/node-gyp-build/optional.js +7 -0
- package/backend/node_modules/node-gyp-build/package.json +43 -0
- package/backend/node_modules/nodemon/.prettierrc.json +3 -0
- package/backend/node_modules/nodemon/LICENSE +21 -0
- package/backend/node_modules/nodemon/README.md +439 -0
- package/backend/node_modules/nodemon/bin/nodemon.js +16 -0
- package/backend/node_modules/nodemon/bin/windows-kill.exe +0 -0
- package/backend/node_modules/nodemon/doc/cli/authors.txt +8 -0
- package/backend/node_modules/nodemon/doc/cli/config.txt +44 -0
- package/backend/node_modules/nodemon/doc/cli/help.txt +29 -0
- package/backend/node_modules/nodemon/doc/cli/logo.txt +20 -0
- package/backend/node_modules/nodemon/doc/cli/options.txt +36 -0
- package/backend/node_modules/nodemon/doc/cli/topics.txt +8 -0
- package/backend/node_modules/nodemon/doc/cli/usage.txt +3 -0
- package/backend/node_modules/nodemon/doc/cli/whoami.txt +9 -0
- package/backend/node_modules/nodemon/index.d.ts +124 -0
- package/backend/node_modules/nodemon/jsconfig.json +7 -0
- package/backend/node_modules/nodemon/lib/cli/index.js +49 -0
- package/backend/node_modules/nodemon/lib/cli/parse.js +230 -0
- package/backend/node_modules/nodemon/lib/config/command.js +43 -0
- package/backend/node_modules/nodemon/lib/config/defaults.js +34 -0
- package/backend/node_modules/nodemon/lib/config/exec.js +240 -0
- package/backend/node_modules/nodemon/lib/config/index.js +93 -0
- package/backend/node_modules/nodemon/lib/config/load.js +225 -0
- package/backend/node_modules/nodemon/lib/help/index.js +27 -0
- package/backend/node_modules/nodemon/lib/index.js +1 -0
- package/backend/node_modules/nodemon/lib/monitor/index.js +4 -0
- package/backend/node_modules/nodemon/lib/monitor/match.js +288 -0
- package/backend/node_modules/nodemon/lib/monitor/run.js +562 -0
- package/backend/node_modules/nodemon/lib/monitor/signals.js +34 -0
- package/backend/node_modules/nodemon/lib/monitor/watch.js +244 -0
- package/backend/node_modules/nodemon/lib/nodemon.js +317 -0
- package/backend/node_modules/nodemon/lib/rules/add.js +89 -0
- package/backend/node_modules/nodemon/lib/rules/index.js +53 -0
- package/backend/node_modules/nodemon/lib/rules/parse.js +43 -0
- package/backend/node_modules/nodemon/lib/spawn.js +74 -0
- package/backend/node_modules/nodemon/lib/utils/bus.js +44 -0
- package/backend/node_modules/nodemon/lib/utils/clone.js +40 -0
- package/backend/node_modules/nodemon/lib/utils/colour.js +26 -0
- package/backend/node_modules/nodemon/lib/utils/index.js +103 -0
- package/backend/node_modules/nodemon/lib/utils/log.js +82 -0
- package/backend/node_modules/nodemon/lib/utils/merge.js +47 -0
- package/backend/node_modules/nodemon/lib/version.js +100 -0
- package/backend/node_modules/nodemon/package.json +78 -0
- package/backend/node_modules/normalize-path/LICENSE +21 -0
- package/backend/node_modules/normalize-path/README.md +127 -0
- package/backend/node_modules/normalize-path/index.js +35 -0
- package/backend/node_modules/normalize-path/package.json +77 -0
- package/backend/node_modules/object-assign/index.js +90 -0
- package/backend/node_modules/object-assign/license +21 -0
- package/backend/node_modules/object-assign/package.json +42 -0
- package/backend/node_modules/object-assign/readme.md +61 -0
- package/backend/node_modules/object-inspect/.eslintrc +53 -0
- package/backend/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/backend/node_modules/object-inspect/.nycrc +13 -0
- package/backend/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/backend/node_modules/object-inspect/LICENSE +21 -0
- package/backend/node_modules/object-inspect/example/all.js +23 -0
- package/backend/node_modules/object-inspect/example/circular.js +6 -0
- package/backend/node_modules/object-inspect/example/fn.js +5 -0
- package/backend/node_modules/object-inspect/example/inspect.js +10 -0
- package/backend/node_modules/object-inspect/index.js +544 -0
- package/backend/node_modules/object-inspect/package-support.json +20 -0
- package/backend/node_modules/object-inspect/package.json +105 -0
- package/backend/node_modules/object-inspect/readme.markdown +84 -0
- package/backend/node_modules/object-inspect/test/bigint.js +58 -0
- package/backend/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/backend/node_modules/object-inspect/test/circular.js +16 -0
- package/backend/node_modules/object-inspect/test/deep.js +12 -0
- package/backend/node_modules/object-inspect/test/element.js +53 -0
- package/backend/node_modules/object-inspect/test/err.js +48 -0
- package/backend/node_modules/object-inspect/test/fakes.js +29 -0
- package/backend/node_modules/object-inspect/test/fn.js +76 -0
- package/backend/node_modules/object-inspect/test/global.js +17 -0
- package/backend/node_modules/object-inspect/test/has.js +15 -0
- package/backend/node_modules/object-inspect/test/holes.js +15 -0
- package/backend/node_modules/object-inspect/test/indent-option.js +271 -0
- package/backend/node_modules/object-inspect/test/inspect.js +139 -0
- package/backend/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/backend/node_modules/object-inspect/test/number.js +58 -0
- package/backend/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/backend/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/backend/node_modules/object-inspect/test/undef.js +12 -0
- package/backend/node_modules/object-inspect/test/values.js +261 -0
- package/backend/node_modules/object-inspect/test-core-js.js +26 -0
- package/backend/node_modules/object-inspect/util.inspect.js +1 -0
- package/backend/node_modules/on-finished/HISTORY.md +98 -0
- package/backend/node_modules/on-finished/LICENSE +23 -0
- package/backend/node_modules/on-finished/README.md +162 -0
- package/backend/node_modules/on-finished/index.js +234 -0
- package/backend/node_modules/on-finished/package.json +39 -0
- package/backend/node_modules/once/LICENSE +15 -0
- package/backend/node_modules/once/README.md +79 -0
- package/backend/node_modules/once/once.js +42 -0
- package/backend/node_modules/once/package.json +33 -0
- package/backend/node_modules/parseurl/HISTORY.md +58 -0
- package/backend/node_modules/parseurl/LICENSE +24 -0
- package/backend/node_modules/parseurl/README.md +133 -0
- package/backend/node_modules/parseurl/index.js +158 -0
- package/backend/node_modules/parseurl/package.json +40 -0
- package/backend/node_modules/path-to-regexp/LICENSE +21 -0
- package/backend/node_modules/path-to-regexp/Readme.md +224 -0
- package/backend/node_modules/path-to-regexp/dist/index.d.ts +147 -0
- package/backend/node_modules/path-to-regexp/dist/index.js +431 -0
- package/backend/node_modules/path-to-regexp/dist/index.js.map +1 -0
- package/backend/node_modules/path-to-regexp/package.json +64 -0
- package/backend/node_modules/picomatch/LICENSE +21 -0
- package/backend/node_modules/picomatch/README.md +716 -0
- package/backend/node_modules/picomatch/index.js +3 -0
- package/backend/node_modules/picomatch/lib/constants.js +184 -0
- package/backend/node_modules/picomatch/lib/parse.js +1392 -0
- package/backend/node_modules/picomatch/lib/picomatch.js +342 -0
- package/backend/node_modules/picomatch/lib/scan.js +391 -0
- package/backend/node_modules/picomatch/lib/utils.js +64 -0
- package/backend/node_modules/picomatch/package.json +81 -0
- package/backend/node_modules/proxy-addr/HISTORY.md +161 -0
- package/backend/node_modules/proxy-addr/LICENSE +22 -0
- package/backend/node_modules/proxy-addr/README.md +139 -0
- package/backend/node_modules/proxy-addr/index.js +327 -0
- package/backend/node_modules/proxy-addr/package.json +47 -0
- package/backend/node_modules/pstree.remy/.travis.yml +8 -0
- package/backend/node_modules/pstree.remy/LICENSE +7 -0
- package/backend/node_modules/pstree.remy/README.md +26 -0
- package/backend/node_modules/pstree.remy/lib/index.js +37 -0
- package/backend/node_modules/pstree.remy/lib/tree.js +37 -0
- package/backend/node_modules/pstree.remy/lib/utils.js +53 -0
- package/backend/node_modules/pstree.remy/package.json +33 -0
- package/backend/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
- package/backend/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
- package/backend/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
- package/backend/node_modules/pstree.remy/tests/index.test.js +51 -0
- package/backend/node_modules/qs/.editorconfig +46 -0
- package/backend/node_modules/qs/.github/FUNDING.yml +12 -0
- package/backend/node_modules/qs/.github/SECURITY.md +11 -0
- package/backend/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/backend/node_modules/qs/.nycrc +13 -0
- package/backend/node_modules/qs/CHANGELOG.md +822 -0
- package/backend/node_modules/qs/LICENSE.md +29 -0
- package/backend/node_modules/qs/README.md +758 -0
- package/backend/node_modules/qs/dist/qs.js +141 -0
- package/backend/node_modules/qs/eslint.config.mjs +57 -0
- package/backend/node_modules/qs/lib/formats.js +23 -0
- package/backend/node_modules/qs/lib/index.js +11 -0
- package/backend/node_modules/qs/lib/parse.js +403 -0
- package/backend/node_modules/qs/lib/stringify.js +363 -0
- package/backend/node_modules/qs/lib/utils.js +342 -0
- package/backend/node_modules/qs/package.json +94 -0
- package/backend/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/backend/node_modules/qs/test/parse.js +1703 -0
- package/backend/node_modules/qs/test/stringify.js +1448 -0
- package/backend/node_modules/qs/test/utils.js +432 -0
- package/backend/node_modules/range-parser/HISTORY.md +56 -0
- package/backend/node_modules/range-parser/LICENSE +23 -0
- package/backend/node_modules/range-parser/README.md +84 -0
- package/backend/node_modules/range-parser/index.js +162 -0
- package/backend/node_modules/range-parser/package.json +44 -0
- package/backend/node_modules/raw-body/LICENSE +22 -0
- package/backend/node_modules/raw-body/README.md +223 -0
- package/backend/node_modules/raw-body/index.d.ts +85 -0
- package/backend/node_modules/raw-body/index.js +336 -0
- package/backend/node_modules/raw-body/package.json +46 -0
- package/backend/node_modules/readdirp/LICENSE +21 -0
- package/backend/node_modules/readdirp/README.md +122 -0
- package/backend/node_modules/readdirp/index.d.ts +43 -0
- package/backend/node_modules/readdirp/index.js +287 -0
- package/backend/node_modules/readdirp/package.json +122 -0
- package/backend/node_modules/router/HISTORY.md +228 -0
- package/backend/node_modules/router/LICENSE +23 -0
- package/backend/node_modules/router/README.md +416 -0
- package/backend/node_modules/router/index.js +748 -0
- package/backend/node_modules/router/lib/layer.js +247 -0
- package/backend/node_modules/router/lib/route.js +242 -0
- package/backend/node_modules/router/package.json +44 -0
- package/backend/node_modules/safe-buffer/LICENSE +21 -0
- package/backend/node_modules/safe-buffer/README.md +584 -0
- package/backend/node_modules/safe-buffer/index.d.ts +187 -0
- package/backend/node_modules/safe-buffer/index.js +65 -0
- package/backend/node_modules/safe-buffer/package.json +51 -0
- package/backend/node_modules/safer-buffer/LICENSE +21 -0
- package/backend/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/backend/node_modules/safer-buffer/Readme.md +156 -0
- package/backend/node_modules/safer-buffer/dangerous.js +58 -0
- package/backend/node_modules/safer-buffer/package.json +34 -0
- package/backend/node_modules/safer-buffer/safer.js +77 -0
- package/backend/node_modules/safer-buffer/tests.js +406 -0
- package/backend/node_modules/semver/LICENSE +15 -0
- package/backend/node_modules/semver/README.md +680 -0
- package/backend/node_modules/semver/bin/semver.js +195 -0
- package/backend/node_modules/semver/classes/comparator.js +143 -0
- package/backend/node_modules/semver/classes/index.js +7 -0
- package/backend/node_modules/semver/classes/range.js +557 -0
- package/backend/node_modules/semver/classes/semver.js +333 -0
- package/backend/node_modules/semver/functions/clean.js +8 -0
- package/backend/node_modules/semver/functions/cmp.js +54 -0
- package/backend/node_modules/semver/functions/coerce.js +62 -0
- package/backend/node_modules/semver/functions/compare-build.js +9 -0
- package/backend/node_modules/semver/functions/compare-loose.js +5 -0
- package/backend/node_modules/semver/functions/compare.js +7 -0
- package/backend/node_modules/semver/functions/diff.js +60 -0
- package/backend/node_modules/semver/functions/eq.js +5 -0
- package/backend/node_modules/semver/functions/gt.js +5 -0
- package/backend/node_modules/semver/functions/gte.js +5 -0
- package/backend/node_modules/semver/functions/inc.js +21 -0
- package/backend/node_modules/semver/functions/lt.js +5 -0
- package/backend/node_modules/semver/functions/lte.js +5 -0
- package/backend/node_modules/semver/functions/major.js +5 -0
- package/backend/node_modules/semver/functions/minor.js +5 -0
- package/backend/node_modules/semver/functions/neq.js +5 -0
- package/backend/node_modules/semver/functions/parse.js +18 -0
- package/backend/node_modules/semver/functions/patch.js +5 -0
- package/backend/node_modules/semver/functions/prerelease.js +8 -0
- package/backend/node_modules/semver/functions/rcompare.js +5 -0
- package/backend/node_modules/semver/functions/rsort.js +5 -0
- package/backend/node_modules/semver/functions/satisfies.js +12 -0
- package/backend/node_modules/semver/functions/sort.js +5 -0
- package/backend/node_modules/semver/functions/truncate.js +48 -0
- package/backend/node_modules/semver/functions/valid.js +8 -0
- package/backend/node_modules/semver/index.js +93 -0
- package/backend/node_modules/semver/internal/constants.js +37 -0
- package/backend/node_modules/semver/internal/debug.js +11 -0
- package/backend/node_modules/semver/internal/identifiers.js +29 -0
- package/backend/node_modules/semver/internal/lrucache.js +42 -0
- package/backend/node_modules/semver/internal/parse-options.js +17 -0
- package/backend/node_modules/semver/internal/re.js +223 -0
- package/backend/node_modules/semver/package.json +78 -0
- package/backend/node_modules/semver/preload.js +4 -0
- package/backend/node_modules/semver/range.bnf +17 -0
- package/backend/node_modules/semver/ranges/gtr.js +6 -0
- package/backend/node_modules/semver/ranges/intersects.js +9 -0
- package/backend/node_modules/semver/ranges/ltr.js +6 -0
- package/backend/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/backend/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/backend/node_modules/semver/ranges/min-version.js +63 -0
- package/backend/node_modules/semver/ranges/outside.js +82 -0
- package/backend/node_modules/semver/ranges/simplify.js +49 -0
- package/backend/node_modules/semver/ranges/subset.js +249 -0
- package/backend/node_modules/semver/ranges/to-comparators.js +10 -0
- package/backend/node_modules/semver/ranges/valid.js +13 -0
- package/backend/node_modules/send/LICENSE +23 -0
- package/backend/node_modules/send/README.md +317 -0
- package/backend/node_modules/send/index.js +997 -0
- package/backend/node_modules/send/package.json +63 -0
- package/backend/node_modules/serve-static/LICENSE +25 -0
- package/backend/node_modules/serve-static/README.md +253 -0
- package/backend/node_modules/serve-static/index.js +208 -0
- package/backend/node_modules/serve-static/package.json +44 -0
- package/backend/node_modules/setprototypeof/LICENSE +13 -0
- package/backend/node_modules/setprototypeof/README.md +31 -0
- package/backend/node_modules/setprototypeof/index.d.ts +2 -0
- package/backend/node_modules/setprototypeof/index.js +17 -0
- package/backend/node_modules/setprototypeof/package.json +38 -0
- package/backend/node_modules/setprototypeof/test/index.js +24 -0
- package/backend/node_modules/side-channel/.editorconfig +9 -0
- package/backend/node_modules/side-channel/.eslintrc +12 -0
- package/backend/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel/.nycrc +13 -0
- package/backend/node_modules/side-channel/CHANGELOG.md +110 -0
- package/backend/node_modules/side-channel/LICENSE +21 -0
- package/backend/node_modules/side-channel/README.md +61 -0
- package/backend/node_modules/side-channel/index.d.ts +14 -0
- package/backend/node_modules/side-channel/index.js +43 -0
- package/backend/node_modules/side-channel/package.json +85 -0
- package/backend/node_modules/side-channel/test/index.js +104 -0
- package/backend/node_modules/side-channel/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-list/.editorconfig +9 -0
- package/backend/node_modules/side-channel-list/.eslintrc +11 -0
- package/backend/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-list/.nycrc +13 -0
- package/backend/node_modules/side-channel-list/CHANGELOG.md +36 -0
- package/backend/node_modules/side-channel-list/LICENSE +21 -0
- package/backend/node_modules/side-channel-list/README.md +62 -0
- package/backend/node_modules/side-channel-list/index.d.ts +13 -0
- package/backend/node_modules/side-channel-list/index.js +111 -0
- package/backend/node_modules/side-channel-list/list.d.ts +14 -0
- package/backend/node_modules/side-channel-list/package.json +77 -0
- package/backend/node_modules/side-channel-list/test/index.js +154 -0
- package/backend/node_modules/side-channel-list/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-map/.editorconfig +9 -0
- package/backend/node_modules/side-channel-map/.eslintrc +11 -0
- package/backend/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-map/.nycrc +13 -0
- package/backend/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/backend/node_modules/side-channel-map/LICENSE +21 -0
- package/backend/node_modules/side-channel-map/README.md +62 -0
- package/backend/node_modules/side-channel-map/index.d.ts +15 -0
- package/backend/node_modules/side-channel-map/index.js +68 -0
- package/backend/node_modules/side-channel-map/package.json +80 -0
- package/backend/node_modules/side-channel-map/test/index.js +114 -0
- package/backend/node_modules/side-channel-map/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/backend/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/backend/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/backend/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/backend/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/backend/node_modules/side-channel-weakmap/README.md +62 -0
- package/backend/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/backend/node_modules/side-channel-weakmap/index.js +84 -0
- package/backend/node_modules/side-channel-weakmap/package.json +87 -0
- package/backend/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/backend/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/backend/node_modules/simple-update-notifier/LICENSE +21 -0
- package/backend/node_modules/simple-update-notifier/README.md +82 -0
- package/backend/node_modules/simple-update-notifier/build/index.d.ts +13 -0
- package/backend/node_modules/simple-update-notifier/build/index.js +210 -0
- package/backend/node_modules/simple-update-notifier/package.json +100 -0
- package/backend/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
- package/backend/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
- package/backend/node_modules/simple-update-notifier/src/cache.ts +44 -0
- package/backend/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
- package/backend/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
- package/backend/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
- package/backend/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
- package/backend/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
- package/backend/node_modules/simple-update-notifier/src/index.ts +34 -0
- package/backend/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
- package/backend/node_modules/simple-update-notifier/src/types.ts +8 -0
- package/backend/node_modules/sql-escaper/LICENSE +21 -0
- package/backend/node_modules/sql-escaper/README.md +424 -0
- package/backend/node_modules/sql-escaper/lib/index.d.ts +15 -0
- package/backend/node_modules/sql-escaper/lib/index.js +398 -0
- package/backend/node_modules/sql-escaper/lib/index.mjs +305 -0
- package/backend/node_modules/sql-escaper/lib/types.d.ts +5 -0
- package/backend/node_modules/sql-escaper/lib/types.js +2 -0
- package/backend/node_modules/sql-escaper/package.json +81 -0
- package/backend/node_modules/statuses/HISTORY.md +87 -0
- package/backend/node_modules/statuses/LICENSE +23 -0
- package/backend/node_modules/statuses/README.md +139 -0
- package/backend/node_modules/statuses/codes.json +65 -0
- package/backend/node_modules/statuses/index.js +146 -0
- package/backend/node_modules/statuses/package.json +49 -0
- package/backend/node_modules/supports-color/browser.js +5 -0
- package/backend/node_modules/supports-color/index.js +131 -0
- package/backend/node_modules/supports-color/license +9 -0
- package/backend/node_modules/supports-color/package.json +53 -0
- package/backend/node_modules/supports-color/readme.md +66 -0
- package/backend/node_modules/to-regex-range/LICENSE +21 -0
- package/backend/node_modules/to-regex-range/README.md +305 -0
- package/backend/node_modules/to-regex-range/index.js +288 -0
- package/backend/node_modules/to-regex-range/package.json +88 -0
- package/backend/node_modules/toidentifier/HISTORY.md +9 -0
- package/backend/node_modules/toidentifier/LICENSE +21 -0
- package/backend/node_modules/toidentifier/README.md +61 -0
- package/backend/node_modules/toidentifier/index.js +32 -0
- package/backend/node_modules/toidentifier/package.json +38 -0
- package/backend/node_modules/token/index.js +60 -0
- package/backend/node_modules/token/package.json +24 -0
- package/backend/node_modules/token/readme.md +70 -0
- package/backend/node_modules/token/test/token.test.js +77 -0
- package/backend/node_modules/touch/LICENSE +15 -0
- package/backend/node_modules/touch/README.md +52 -0
- package/backend/node_modules/touch/bin/nodetouch.js +112 -0
- package/backend/node_modules/touch/index.js +224 -0
- package/backend/node_modules/touch/package.json +25 -0
- package/backend/node_modules/type-is/HISTORY.md +292 -0
- package/backend/node_modules/type-is/LICENSE +23 -0
- package/backend/node_modules/type-is/README.md +198 -0
- package/backend/node_modules/type-is/index.js +240 -0
- package/backend/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
- package/backend/node_modules/type-is/node_modules/content-type/README.md +69 -0
- package/backend/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
- package/backend/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
- package/backend/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
- package/backend/node_modules/type-is/node_modules/content-type/package.json +52 -0
- package/backend/node_modules/type-is/package.json +51 -0
- package/backend/node_modules/undefsafe/.github/workflows/release.yml +25 -0
- package/backend/node_modules/undefsafe/.jscsrc +13 -0
- package/backend/node_modules/undefsafe/.jshintrc +16 -0
- package/backend/node_modules/undefsafe/.travis.yml +18 -0
- package/backend/node_modules/undefsafe/LICENSE +22 -0
- package/backend/node_modules/undefsafe/README.md +63 -0
- package/backend/node_modules/undefsafe/example.js +14 -0
- package/backend/node_modules/undefsafe/lib/undefsafe.js +125 -0
- package/backend/node_modules/undefsafe/package.json +34 -0
- package/backend/node_modules/undici-types/LICENSE +21 -0
- package/backend/node_modules/undici-types/README.md +6 -0
- package/backend/node_modules/undici-types/agent.d.ts +32 -0
- package/backend/node_modules/undici-types/api.d.ts +43 -0
- package/backend/node_modules/undici-types/balanced-pool.d.ts +30 -0
- package/backend/node_modules/undici-types/cache-interceptor.d.ts +179 -0
- package/backend/node_modules/undici-types/cache.d.ts +36 -0
- package/backend/node_modules/undici-types/client-stats.d.ts +15 -0
- package/backend/node_modules/undici-types/client.d.ts +123 -0
- package/backend/node_modules/undici-types/connector.d.ts +36 -0
- package/backend/node_modules/undici-types/content-type.d.ts +21 -0
- package/backend/node_modules/undici-types/cookies.d.ts +30 -0
- package/backend/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
- package/backend/node_modules/undici-types/dispatcher.d.ts +279 -0
- package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
- package/backend/node_modules/undici-types/errors.d.ts +177 -0
- package/backend/node_modules/undici-types/eventsource.d.ts +66 -0
- package/backend/node_modules/undici-types/fetch.d.ts +211 -0
- package/backend/node_modules/undici-types/formdata.d.ts +108 -0
- package/backend/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/backend/node_modules/undici-types/global-origin.d.ts +7 -0
- package/backend/node_modules/undici-types/h2c-client.d.ts +73 -0
- package/backend/node_modules/undici-types/handlers.d.ts +15 -0
- package/backend/node_modules/undici-types/header.d.ts +160 -0
- package/backend/node_modules/undici-types/index.d.ts +91 -0
- package/backend/node_modules/undici-types/interceptors.d.ts +80 -0
- package/backend/node_modules/undici-types/mock-agent.d.ts +68 -0
- package/backend/node_modules/undici-types/mock-call-history.d.ts +111 -0
- package/backend/node_modules/undici-types/mock-client.d.ts +27 -0
- package/backend/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/backend/node_modules/undici-types/mock-interceptor.d.ts +94 -0
- package/backend/node_modules/undici-types/mock-pool.d.ts +27 -0
- package/backend/node_modules/undici-types/package.json +55 -0
- package/backend/node_modules/undici-types/patch.d.ts +29 -0
- package/backend/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/backend/node_modules/undici-types/pool.d.ts +41 -0
- package/backend/node_modules/undici-types/proxy-agent.d.ts +29 -0
- package/backend/node_modules/undici-types/readable.d.ts +68 -0
- package/backend/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/backend/node_modules/undici-types/retry-handler.d.ts +125 -0
- package/backend/node_modules/undici-types/round-robin-pool.d.ts +41 -0
- package/backend/node_modules/undici-types/snapshot-agent.d.ts +109 -0
- package/backend/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
- package/backend/node_modules/undici-types/util.d.ts +18 -0
- package/backend/node_modules/undici-types/utility.d.ts +7 -0
- package/backend/node_modules/undici-types/webidl.d.ts +347 -0
- package/backend/node_modules/undici-types/websocket.d.ts +188 -0
- package/backend/node_modules/unpipe/HISTORY.md +4 -0
- package/backend/node_modules/unpipe/LICENSE +22 -0
- package/backend/node_modules/unpipe/README.md +43 -0
- package/backend/node_modules/unpipe/index.js +69 -0
- package/backend/node_modules/unpipe/package.json +27 -0
- package/backend/node_modules/vary/HISTORY.md +39 -0
- package/backend/node_modules/vary/LICENSE +22 -0
- package/backend/node_modules/vary/README.md +101 -0
- package/backend/node_modules/vary/index.js +149 -0
- package/backend/node_modules/vary/package.json +43 -0
- package/backend/node_modules/web/README.md +191 -0
- package/backend/node_modules/web/package.json +17 -0
- package/backend/node_modules/web/test-web.js +16 -0
- package/backend/node_modules/web/web.js +200 -0
- package/backend/node_modules/wrappy/LICENSE +15 -0
- package/backend/node_modules/wrappy/README.md +36 -0
- package/backend/node_modules/wrappy/package.json +29 -0
- package/backend/node_modules/wrappy/wrappy.js +33 -0
- package/backend/package-lock.json +1506 -0
- package/backend/package.json +25 -0
- package/backend/server.js +561 -0
- package/epms.sql +162 -0
- package/frontend/README.md +16 -0
- package/frontend/eslint.config.js +21 -0
- package/frontend/index.html +13 -0
- package/frontend/package-lock.json +3042 -0
- package/frontend/package.json +31 -0
- package/frontend/public/favicon.svg +1 -0
- package/frontend/public/icons.svg +24 -0
- package/frontend/src/App.css +184 -0
- package/frontend/src/App.jsx +58 -0
- package/frontend/src/assets/hero.png +0 -0
- package/frontend/src/assets/react.svg +1 -0
- package/frontend/src/assets/vite.svg +1 -0
- package/frontend/src/components/Sidebar.jsx +77 -0
- package/frontend/src/index.css +1 -0
- package/frontend/src/main.jsx +12 -0
- package/frontend/src/pages/Dashboard.jsx +26 -0
- package/frontend/src/pages/Department.jsx +282 -0
- package/frontend/src/pages/Employee.jsx +317 -0
- package/frontend/src/pages/Login.jsx +114 -0
- package/frontend/src/pages/Payroll.jsx +113 -0
- package/frontend/src/pages/Register.jsx +108 -0
- package/frontend/src/pages/Salary.jsx +166 -0
- package/frontend/vite.config.js +8 -0
- package/package.json +13 -0
|
@@ -0,0 +1,1151 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "JSON" "1" "April 2021" "" "json tool manual"
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBjson\fR \- JSON love for your command line
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
something\-generating\-JSON\-on\-stdout | \fBjson\fR [OPTIONS] [LOOKUPS]
|
|
11
|
+
.
|
|
12
|
+
.P
|
|
13
|
+
\fBjson\fR \-f FILE [OPTIONS] [LOOKUPS\.\.\.]
|
|
14
|
+
.
|
|
15
|
+
.SH "DESCRIPTION"
|
|
16
|
+
\fBjson\fR is a fast command\-line tool for working with JSON content from the command line\. Among its features: streaming stdin/stdout or working with JSON files, pretty\-printing with control over output formats, JSON validation, filtering, modification, in\-place JSON file modification, field extraction, tabular output, skipping HTTP header blocks for use with REST API responses, JSON stream (\'\en\'\-separated JSON objects) processing\.
|
|
17
|
+
.
|
|
18
|
+
.P
|
|
19
|
+
Read on for details and examples\. The FEATURE sections describe \fBjson\fR features roughly in the order of processing\.
|
|
20
|
+
.
|
|
21
|
+
.SH "FEATURE: HTTP Header Stripping"
|
|
22
|
+
\fBjson\fR roots are as a tool to assist working with REST APIs\. Often results being parsed include HTTP headers, as from \fBcurl \-i\fR, with a JSON payload\. By default \fBjson\fR passes through HTTP header blocks\. Use \fB\-H\fR to strip a leading HTTP header block\.
|
|
23
|
+
.
|
|
24
|
+
.SH "FEATURE: Grouping"
|
|
25
|
+
(Added in json v4\.) Use \'\-g\' or \'\-\-group\' to group adjacent objects into a single JSON array or to concatenate adjacent arrays into a single array\. E\.g\.:
|
|
26
|
+
.
|
|
27
|
+
.IP "" 4
|
|
28
|
+
.
|
|
29
|
+
.nf
|
|
30
|
+
|
|
31
|
+
$ echo \'{"a":1}
|
|
32
|
+
{"b": 2}\' | json \-g
|
|
33
|
+
[
|
|
34
|
+
{
|
|
35
|
+
"a": 1
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"b": 2
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
$ echo \'["one"]
|
|
43
|
+
["two"]\' | json \-g
|
|
44
|
+
[
|
|
45
|
+
"one",
|
|
46
|
+
"two"
|
|
47
|
+
]
|
|
48
|
+
.
|
|
49
|
+
.fi
|
|
50
|
+
.
|
|
51
|
+
.IP "" 0
|
|
52
|
+
.
|
|
53
|
+
.P
|
|
54
|
+
"Adjacent" objects means objects separated by a newline, or by no space at all\. Adjacent \fIarrays\fR means separate by a newline\. These conditions are chosen as a balance between (a) not being ambiguous to parse with a simple regex and (b) enough to be useful for common cases\.
|
|
55
|
+
.
|
|
56
|
+
.P
|
|
57
|
+
\fICompatibility note:\fR In json v3 and earlier, this used to be called "auto\-arrayification" and was implicit\. In json v4 and v5 grouping of adjacent arrays separated by no space was allowed\. That was dropped in v6 (see issue #55 \fIhttps://github\.com/trentm/json/issues/55\fR)\. See the \fICOMPATIBILITY\fR section below\.
|
|
58
|
+
.
|
|
59
|
+
.SH "FEATURE: Streaming"
|
|
60
|
+
Grouping can be helpful for "one JSON object per line" formats or for things such as:
|
|
61
|
+
.
|
|
62
|
+
.IP "" 4
|
|
63
|
+
.
|
|
64
|
+
.nf
|
|
65
|
+
|
|
66
|
+
$ cat *\.json | json \-g \.\.\.
|
|
67
|
+
.
|
|
68
|
+
.fi
|
|
69
|
+
.
|
|
70
|
+
.IP "" 0
|
|
71
|
+
.
|
|
72
|
+
.P
|
|
73
|
+
However, when the size of the input is large practically one must do stream processing\. As of json v5\.1, \fBjson \-ga\fR will \fBstream\fR\. An extreme example is:
|
|
74
|
+
.
|
|
75
|
+
.IP "" 4
|
|
76
|
+
.
|
|
77
|
+
.nf
|
|
78
|
+
|
|
79
|
+
$ yes \'{"foo":"bar"}\' | json \-ga
|
|
80
|
+
.
|
|
81
|
+
.fi
|
|
82
|
+
.
|
|
83
|
+
.IP "" 0
|
|
84
|
+
.
|
|
85
|
+
.P
|
|
86
|
+
But a more practical example would be a large file of newline\-separated JSON objects, such as a Bunyan \fIhttps://github\.com/trentm/node\-bunyan\fR log file:
|
|
87
|
+
.
|
|
88
|
+
.IP "" 4
|
|
89
|
+
.
|
|
90
|
+
.nf
|
|
91
|
+
|
|
92
|
+
$ cat foo\.log | json \-ga req\.method req\.url res\.headers\.x\-response\-time
|
|
93
|
+
GET /ping 1
|
|
94
|
+
POST /images 43
|
|
95
|
+
\.\.\.
|
|
96
|
+
.
|
|
97
|
+
.fi
|
|
98
|
+
.
|
|
99
|
+
.IP "" 0
|
|
100
|
+
.
|
|
101
|
+
.SH "FEATURE: Merging"
|
|
102
|
+
(Added in json v4\.) Use \'\-\-merge\' or \'\-\-deep\-merge\' to \fBmerge adjacent JSON objects\fR in the input\. Keys in the last object win\.
|
|
103
|
+
.
|
|
104
|
+
.IP "" 4
|
|
105
|
+
.
|
|
106
|
+
.nf
|
|
107
|
+
|
|
108
|
+
$ echo \'{"one":"un","two":"deux"}
|
|
109
|
+
{"one":"uno","three":"tres"}\' | json \-\-merge
|
|
110
|
+
{
|
|
111
|
+
"one": "uno",
|
|
112
|
+
"two": "deux",
|
|
113
|
+
"three": "tres"
|
|
114
|
+
}
|
|
115
|
+
.
|
|
116
|
+
.fi
|
|
117
|
+
.
|
|
118
|
+
.IP "" 0
|
|
119
|
+
.
|
|
120
|
+
.P
|
|
121
|
+
This could be useful for merging multiple config files, e\.g\.:
|
|
122
|
+
.
|
|
123
|
+
.IP "" 4
|
|
124
|
+
.
|
|
125
|
+
.nf
|
|
126
|
+
|
|
127
|
+
$ cat /opt/app/etc/defaults\.json \e
|
|
128
|
+
/etc/app/config\.json \e
|
|
129
|
+
~/\.app/config\.json | json \-\-merge
|
|
130
|
+
\.\.\.
|
|
131
|
+
.
|
|
132
|
+
.fi
|
|
133
|
+
.
|
|
134
|
+
.IP "" 0
|
|
135
|
+
.
|
|
136
|
+
.SH "FEATURE: Itemizing"
|
|
137
|
+
(Added in json v9\.) Looking up fields in an array of object is easy with \fBjson\fR:
|
|
138
|
+
.
|
|
139
|
+
.IP "" 4
|
|
140
|
+
.
|
|
141
|
+
.nf
|
|
142
|
+
|
|
143
|
+
$ echo \'[{"name":"trent","age":38},
|
|
144
|
+
{"name":"ewan","age":4}]\' | json \-a name age
|
|
145
|
+
trent 38
|
|
146
|
+
ewan 4
|
|
147
|
+
.
|
|
148
|
+
.fi
|
|
149
|
+
.
|
|
150
|
+
.IP "" 0
|
|
151
|
+
.
|
|
152
|
+
.P
|
|
153
|
+
but less so when a set of objects is indexed by key in an object:
|
|
154
|
+
.
|
|
155
|
+
.IP "" 4
|
|
156
|
+
.
|
|
157
|
+
.nf
|
|
158
|
+
|
|
159
|
+
$ echo \'{"trent":{"age":38},
|
|
160
|
+
"ewan": {"age":4}}\' | \.\.\. # How to list ages?
|
|
161
|
+
.
|
|
162
|
+
.fi
|
|
163
|
+
.
|
|
164
|
+
.IP "" 0
|
|
165
|
+
.
|
|
166
|
+
.P
|
|
167
|
+
The \fB\-M, \-\-items\fR option allows one to \fBitemize the key/value pairs of an object\fR for convenient iteration with \fB\-a\fR:
|
|
168
|
+
.
|
|
169
|
+
.IP "" 4
|
|
170
|
+
.
|
|
171
|
+
.nf
|
|
172
|
+
|
|
173
|
+
$ echo \'{"trent":{"age":38},
|
|
174
|
+
"ewan": {"age":4}}\' | json \-M
|
|
175
|
+
[
|
|
176
|
+
{
|
|
177
|
+
"key": "trent",
|
|
178
|
+
"value": {
|
|
179
|
+
"age": 38
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"key": "ewan",
|
|
184
|
+
"value": {
|
|
185
|
+
"age": 4
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
$ echo \'{"trent":{"age":38},
|
|
191
|
+
"ewan": {"age":4}}\' | json \-Ma key value\.age
|
|
192
|
+
trent 38
|
|
193
|
+
ewan 4
|
|
194
|
+
|
|
195
|
+
# List people that can vote\.
|
|
196
|
+
$ echo \'{"trent":{"age":38},
|
|
197
|
+
"ewan": {"age":4}}\' | json \-M \-c \'this\.value\.age > 18\' \-a key
|
|
198
|
+
trent
|
|
199
|
+
.
|
|
200
|
+
.fi
|
|
201
|
+
.
|
|
202
|
+
.IP "" 0
|
|
203
|
+
.
|
|
204
|
+
.SH "FEATURE: Validation"
|
|
205
|
+
\fBjson\fR will give position information and context for JSON syntax errors (\fBSyntaxError\fR)\. This can be handy for validating data and config files:
|
|
206
|
+
.
|
|
207
|
+
.IP "" 4
|
|
208
|
+
.
|
|
209
|
+
.nf
|
|
210
|
+
|
|
211
|
+
$ cat config\.json | json
|
|
212
|
+
json: error: input is not JSON: Unexpected \',\' at line 17, column 5:
|
|
213
|
+
, { "name": "smartos64\-1\.4\.7"
|
|
214
|
+
\.\.\.\.^
|
|
215
|
+
{
|
|
216
|
+
"use\-proxy": false
|
|
217
|
+
\.\.\.
|
|
218
|
+
$ echo $?
|
|
219
|
+
1
|
|
220
|
+
.
|
|
221
|
+
.fi
|
|
222
|
+
.
|
|
223
|
+
.IP "" 0
|
|
224
|
+
.
|
|
225
|
+
.P
|
|
226
|
+
Processing and output of the input JSON can be suppressed with the \fB\-n, \-\-validate\fR option:
|
|
227
|
+
.
|
|
228
|
+
.IP "" 4
|
|
229
|
+
.
|
|
230
|
+
.nf
|
|
231
|
+
|
|
232
|
+
$ cat config\.json | json \-\-validate
|
|
233
|
+
json: error: input is not JSON: Unexpected \',\' at line 17, column 5:
|
|
234
|
+
, { "name": "smartos64\-1\.4\.7"
|
|
235
|
+
\.\.\.\.^
|
|
236
|
+
.
|
|
237
|
+
.fi
|
|
238
|
+
.
|
|
239
|
+
.IP "" 0
|
|
240
|
+
.
|
|
241
|
+
.P
|
|
242
|
+
Together with the \fB\-q\fR you can get silent, exit\-status\-only, JSON validation:
|
|
243
|
+
.
|
|
244
|
+
.IP "" 4
|
|
245
|
+
.
|
|
246
|
+
.nf
|
|
247
|
+
|
|
248
|
+
$ cat config\.json | json \-nq
|
|
249
|
+
$ echo $?
|
|
250
|
+
1
|
|
251
|
+
.
|
|
252
|
+
.fi
|
|
253
|
+
.
|
|
254
|
+
.IP "" 0
|
|
255
|
+
.
|
|
256
|
+
.SH "FEATURE: Execution"
|
|
257
|
+
Use the \fB\-e CODE\fR option to execute (JavaScript) code on the input JSON\.
|
|
258
|
+
.
|
|
259
|
+
.IP "" 4
|
|
260
|
+
.
|
|
261
|
+
.nf
|
|
262
|
+
|
|
263
|
+
$ echo \'{"name":"trent","age":38}\' | json \-e \'this\.age++\'
|
|
264
|
+
{
|
|
265
|
+
"name": "trent",
|
|
266
|
+
"age": 39
|
|
267
|
+
}
|
|
268
|
+
.
|
|
269
|
+
.fi
|
|
270
|
+
.
|
|
271
|
+
.IP "" 0
|
|
272
|
+
.
|
|
273
|
+
.P
|
|
274
|
+
If input is an array, this will automatically process each item separately:
|
|
275
|
+
.
|
|
276
|
+
.IP "" 4
|
|
277
|
+
.
|
|
278
|
+
.nf
|
|
279
|
+
|
|
280
|
+
$ echo \'[{"age":38},{"age":4}]\' | json \-e this\.age++
|
|
281
|
+
[
|
|
282
|
+
{
|
|
283
|
+
"age": 39
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"age": 5
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
.
|
|
290
|
+
.fi
|
|
291
|
+
.
|
|
292
|
+
.IP "" 0
|
|
293
|
+
.
|
|
294
|
+
.P
|
|
295
|
+
That can be overriden with \fB\-A\fR:
|
|
296
|
+
.
|
|
297
|
+
.IP "" 4
|
|
298
|
+
.
|
|
299
|
+
.nf
|
|
300
|
+
|
|
301
|
+
$ echo \'[{"age":38},{"age":4}]\' | json \-A \-e \'this[0]\.age = "unknown"\'
|
|
302
|
+
[
|
|
303
|
+
{
|
|
304
|
+
"age": "unknown"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"age": 4
|
|
308
|
+
}
|
|
309
|
+
]
|
|
310
|
+
.
|
|
311
|
+
.fi
|
|
312
|
+
.
|
|
313
|
+
.IP "" 0
|
|
314
|
+
.
|
|
315
|
+
.P
|
|
316
|
+
The given CODE is executed in a function bound to the input object (i\.e\. \fBthis\fR is the input object)\.
|
|
317
|
+
.
|
|
318
|
+
.P
|
|
319
|
+
\fISecurity note:\fR \fBCODE\fR is \fInot\fR executed in a sandbox, so \fBjson\fR\'s globals are available and unguarded\. You can shoot yourself in the foot\. \fIDo not pass untrusted user\-supplied strings here\.\fR
|
|
320
|
+
.
|
|
321
|
+
.P
|
|
322
|
+
\fICompatibility note:\fR In versions before v9 \fB\-e CODE\fR used an alternate implementation (with slightly different semantics for the CODE)\. It is still supported for backward compatibility by using the \fBJSON_EXEC=vm\fR environment variable\. However it is deprecated because it can cause processing to be \fI10x\fR or more slower for large inputs\. See the \fICOMPATIBILITY\fR section below\.
|
|
323
|
+
.
|
|
324
|
+
.SH "FEATURE: Conditional filtering"
|
|
325
|
+
Use the \fB\-c CODE\fR option to run JavaScript code ending with a statement returning a boolean to filter the input JSON\.
|
|
326
|
+
.
|
|
327
|
+
.IP "" 4
|
|
328
|
+
.
|
|
329
|
+
.nf
|
|
330
|
+
|
|
331
|
+
$ echo \'[{"age":38},{"age":4}]\' | json \-c \'this\.age > 21\'
|
|
332
|
+
[{"age":38}]
|
|
333
|
+
.
|
|
334
|
+
.fi
|
|
335
|
+
.
|
|
336
|
+
.IP "" 0
|
|
337
|
+
.
|
|
338
|
+
.P
|
|
339
|
+
As with \fB\-e\fR above, if input is an array, this will automatically process each item separately\. This can be overriden with \fB\-A\fR\.
|
|
340
|
+
.
|
|
341
|
+
.P
|
|
342
|
+
The given CODE is executed in a function bound to the input object (i\.e\. \fBthis\fR is the input object)\. A JavaScript function must use \fBreturn\fR to return a value, so as a convenience if "return" is not in the given CODE it is presumed to be a single statement and it is wrapped:
|
|
343
|
+
.
|
|
344
|
+
.IP "" 4
|
|
345
|
+
.
|
|
346
|
+
.nf
|
|
347
|
+
|
|
348
|
+
function () {
|
|
349
|
+
return ( CODE );
|
|
350
|
+
}
|
|
351
|
+
.
|
|
352
|
+
.fi
|
|
353
|
+
.
|
|
354
|
+
.IP "" 0
|
|
355
|
+
.
|
|
356
|
+
.P
|
|
357
|
+
To use multiple statements in \fB\-c CODE\fR you must explicitly use \fBreturn\fR, e\.g\.:
|
|
358
|
+
.
|
|
359
|
+
.IP "" 4
|
|
360
|
+
.
|
|
361
|
+
.nf
|
|
362
|
+
|
|
363
|
+
$ echo \'{"a": 2, "b": 6}\' | json \-c \'sum = this\.a + this\.b; return sum > 5\'
|
|
364
|
+
{
|
|
365
|
+
"a": 2,
|
|
366
|
+
"b": 6
|
|
367
|
+
}
|
|
368
|
+
.
|
|
369
|
+
.fi
|
|
370
|
+
.
|
|
371
|
+
.IP "" 0
|
|
372
|
+
.
|
|
373
|
+
.P
|
|
374
|
+
\fISecurity note:\fR \fBCODE\fR is \fInot\fR executed in a sandbox, so \fBjson\fR\'s globals are available and unguarded\. You can shoot yourself in the foot\. \fIDo not pass untrusted user\-supplied strings here\.\fR
|
|
375
|
+
.
|
|
376
|
+
.P
|
|
377
|
+
\fICompatibility note:\fR In versions before v9 \fB\-c CODE\fR used an alternate implementation (with slightly different semantics for the CODE)\. It is still supported for backward compatibility by using the \fBJSON_EXEC=vm\fR environment variable\. However it is deprecated because it can cause processing to be \fI10x\fR or more slower for large inputs\. See the \fICOMPATIBILITY\fR section below\.
|
|
378
|
+
.
|
|
379
|
+
.SH "FEATURE: Lookups"
|
|
380
|
+
Use lookup arguments to extract particular values:
|
|
381
|
+
.
|
|
382
|
+
.IP "" 4
|
|
383
|
+
.
|
|
384
|
+
.nf
|
|
385
|
+
|
|
386
|
+
$ echo \'{"name":"trent","age":38}\' | json name
|
|
387
|
+
trent
|
|
388
|
+
.
|
|
389
|
+
.fi
|
|
390
|
+
.
|
|
391
|
+
.IP "" 0
|
|
392
|
+
.
|
|
393
|
+
.P
|
|
394
|
+
Use \'\.\' in a single lookup to do property access (e\.g\. \fBname\.first\fR) and use multiple args to lookup multiple fields\.
|
|
395
|
+
.
|
|
396
|
+
.IP "" 4
|
|
397
|
+
.
|
|
398
|
+
.nf
|
|
399
|
+
|
|
400
|
+
$ echo \'{"name": {"first": "Trent", "last": "Mick"}, "age": 38}\' \e
|
|
401
|
+
| json name\.first age
|
|
402
|
+
Trent
|
|
403
|
+
38
|
|
404
|
+
.
|
|
405
|
+
.fi
|
|
406
|
+
.
|
|
407
|
+
.IP "" 0
|
|
408
|
+
.
|
|
409
|
+
.P
|
|
410
|
+
Use \fB\-a\fR for \fIArray processing\fR of lookups and \fItAbular output\fR:
|
|
411
|
+
.
|
|
412
|
+
.IP "" 4
|
|
413
|
+
.
|
|
414
|
+
.nf
|
|
415
|
+
|
|
416
|
+
$ echo \'{"name":"trent","age":38}\' | json name
|
|
417
|
+
trent
|
|
418
|
+
$ echo \'[{"name":"trent","age":38},
|
|
419
|
+
{"name":"ewan","age":4}]\' | json \-a name age
|
|
420
|
+
trent 38
|
|
421
|
+
ewan 4
|
|
422
|
+
.
|
|
423
|
+
.fi
|
|
424
|
+
.
|
|
425
|
+
.IP "" 0
|
|
426
|
+
.
|
|
427
|
+
.P
|
|
428
|
+
Integral values work for array index lookups:
|
|
429
|
+
.
|
|
430
|
+
.IP "" 4
|
|
431
|
+
.
|
|
432
|
+
.nf
|
|
433
|
+
|
|
434
|
+
$ echo \'["a", "b", "c"]\' | json 1
|
|
435
|
+
b
|
|
436
|
+
.
|
|
437
|
+
.fi
|
|
438
|
+
.
|
|
439
|
+
.IP "" 0
|
|
440
|
+
.
|
|
441
|
+
.P
|
|
442
|
+
Negative array indices are also supported for convenience (a la Python array indexing):
|
|
443
|
+
.
|
|
444
|
+
.IP "" 4
|
|
445
|
+
.
|
|
446
|
+
.nf
|
|
447
|
+
|
|
448
|
+
$ echo \'["a", "b", "c"]\' | json \-\- \-1
|
|
449
|
+
c
|
|
450
|
+
$ echo \'["a", "b", "c"]\' | json \-\- \-2
|
|
451
|
+
b
|
|
452
|
+
.
|
|
453
|
+
.fi
|
|
454
|
+
.
|
|
455
|
+
.IP "" 0
|
|
456
|
+
.
|
|
457
|
+
.P
|
|
458
|
+
If your lookup isn\'t a number or a JS indentifier \fIhttps://developer\.mozilla\.org/en\-US/docs/JavaScript/Guide/Values,_variables,_and_literals#Variables\fR you can always use \fBJavaScript array\-style lookups\fR like this:
|
|
459
|
+
.
|
|
460
|
+
.IP "" 4
|
|
461
|
+
.
|
|
462
|
+
.nf
|
|
463
|
+
|
|
464
|
+
$ echo \'{"http://example\.com": "my\-value"}\' | json \'["http://example\.com"]\'
|
|
465
|
+
my\-value
|
|
466
|
+
.
|
|
467
|
+
.fi
|
|
468
|
+
.
|
|
469
|
+
.IP "" 0
|
|
470
|
+
.
|
|
471
|
+
.P
|
|
472
|
+
just like you would in JavaScript:
|
|
473
|
+
.
|
|
474
|
+
.IP "" 4
|
|
475
|
+
.
|
|
476
|
+
.nf
|
|
477
|
+
|
|
478
|
+
$ node
|
|
479
|
+
> var d = {"http://example\.com": "my\-value"}
|
|
480
|
+
> d["http://example\.com"]
|
|
481
|
+
\'my\-value\'
|
|
482
|
+
.
|
|
483
|
+
.fi
|
|
484
|
+
.
|
|
485
|
+
.IP "" 0
|
|
486
|
+
.
|
|
487
|
+
.P
|
|
488
|
+
Or it might be easier to set \fBan alternate lookup delimiter\fR:
|
|
489
|
+
.
|
|
490
|
+
.IP "" 4
|
|
491
|
+
.
|
|
492
|
+
.nf
|
|
493
|
+
|
|
494
|
+
$ echo \'{"http://example\.com": "my\-value"}\' | json \-D, http://example\.com
|
|
495
|
+
my\-value
|
|
496
|
+
|
|
497
|
+
$ echo \'{"etc": {"resolv\.conf":1, "passwd":2}}\' | json \-D/ etc/resolv\.conf
|
|
498
|
+
1
|
|
499
|
+
.
|
|
500
|
+
.fi
|
|
501
|
+
.
|
|
502
|
+
.IP "" 0
|
|
503
|
+
.
|
|
504
|
+
.SH "FEATURE: Pretty\-printing"
|
|
505
|
+
Output is "jsony" by default: 2\-space indented JSON \.\.\.
|
|
506
|
+
.
|
|
507
|
+
.IP "" 4
|
|
508
|
+
.
|
|
509
|
+
.nf
|
|
510
|
+
|
|
511
|
+
$ echo \'{"name": "trent", "age": 38}\' | json
|
|
512
|
+
{
|
|
513
|
+
"name": "trent",
|
|
514
|
+
"age": 38
|
|
515
|
+
}
|
|
516
|
+
.
|
|
517
|
+
.fi
|
|
518
|
+
.
|
|
519
|
+
.IP "" 0
|
|
520
|
+
.
|
|
521
|
+
.P
|
|
522
|
+
\&\.\.\. with one exception, a bare string value is printed without quotes (because who wants to deal with quotes in your pipeline?)\.
|
|
523
|
+
.
|
|
524
|
+
.IP "" 4
|
|
525
|
+
.
|
|
526
|
+
.nf
|
|
527
|
+
|
|
528
|
+
$ echo \'{"name": "trent", "age": 38}\' | json name
|
|
529
|
+
trent
|
|
530
|
+
.
|
|
531
|
+
.fi
|
|
532
|
+
.
|
|
533
|
+
.IP "" 0
|
|
534
|
+
.
|
|
535
|
+
.P
|
|
536
|
+
If pure JSON output is wanted, use \fB\-o json\fR or the \fB\-j\fR shortcut:
|
|
537
|
+
.
|
|
538
|
+
.IP "" 4
|
|
539
|
+
.
|
|
540
|
+
.nf
|
|
541
|
+
|
|
542
|
+
$ echo \'{"name": "trent", "age": 38}\' | json \-o json name
|
|
543
|
+
"trent"
|
|
544
|
+
.
|
|
545
|
+
.fi
|
|
546
|
+
.
|
|
547
|
+
.IP "" 0
|
|
548
|
+
.
|
|
549
|
+
.P
|
|
550
|
+
Indentations other than 2 can be selected via \fB\-o json\-N\fR
|
|
551
|
+
.
|
|
552
|
+
.IP "" 4
|
|
553
|
+
.
|
|
554
|
+
.nf
|
|
555
|
+
|
|
556
|
+
$ echo \'{"name": "trent", "age": 38}\' | json \-o json\-0
|
|
557
|
+
{"name":"trent","age":38}
|
|
558
|
+
$ echo \'{"name": "trent", "age": 38}\' | json \-o json\-4
|
|
559
|
+
{
|
|
560
|
+
"name": "trent",
|
|
561
|
+
"age": 38
|
|
562
|
+
}
|
|
563
|
+
.
|
|
564
|
+
.fi
|
|
565
|
+
.
|
|
566
|
+
.IP "" 0
|
|
567
|
+
.
|
|
568
|
+
.P
|
|
569
|
+
The "FORMAT\-N" suffix can also be useful on "jsony" when selecting multiple values and wanting tabular output where some cells are objects:
|
|
570
|
+
.
|
|
571
|
+
.IP "" 4
|
|
572
|
+
.
|
|
573
|
+
.nf
|
|
574
|
+
|
|
575
|
+
$ cat users\.json
|
|
576
|
+
[
|
|
577
|
+
{"name": {"first": "Trent", "last": "Mick"}, "age": 38},
|
|
578
|
+
{"name": {"first": "Ewan", "last": "Mick"}, "age": 4}
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
$ json \-f users\.json \-a name age \-o jsony\-0
|
|
582
|
+
{"first":"Trent","last":"Mick"} 38
|
|
583
|
+
{"first":"Ewan","last":"Mick"} 4
|
|
584
|
+
.
|
|
585
|
+
.fi
|
|
586
|
+
.
|
|
587
|
+
.IP "" 0
|
|
588
|
+
.
|
|
589
|
+
.P
|
|
590
|
+
Further the \fB\-0\fR, \fB\-2\fR, and \fB\-4\fR shortcuts can be used to set the indentation without changing the mode\. This can be use to make the above shorter:
|
|
591
|
+
.
|
|
592
|
+
.IP "" 4
|
|
593
|
+
.
|
|
594
|
+
.nf
|
|
595
|
+
|
|
596
|
+
$ json \-f users\.json \-a name age \-0
|
|
597
|
+
{"first":"Trent","last":"Mick"} 38
|
|
598
|
+
{"first":"Ewan","last":"Mick"} 4
|
|
599
|
+
.
|
|
600
|
+
.fi
|
|
601
|
+
.
|
|
602
|
+
.IP "" 0
|
|
603
|
+
.
|
|
604
|
+
.P
|
|
605
|
+
You can get colored (non\-JSON) output using node\.js\'s \fButil\.inspect\fR \fIhttp://nodejs\.org/docs/latest/api/all\.html#util\.inspect\fR:
|
|
606
|
+
.
|
|
607
|
+
.IP "" 4
|
|
608
|
+
.
|
|
609
|
+
.nf
|
|
610
|
+
|
|
611
|
+
$ echo \'[{"name": "Trent"},{"name": "Ewan"}]\' | json \-o inspect
|
|
612
|
+
[ { name: \'Trent\' },
|
|
613
|
+
{ name: \'Ewan\' } ]
|
|
614
|
+
.
|
|
615
|
+
.fi
|
|
616
|
+
.
|
|
617
|
+
.IP "" 0
|
|
618
|
+
.
|
|
619
|
+
.SH "FEATURE: Listing keys"
|
|
620
|
+
Sometimes you want the list of keys for an object\. Use \fB\-k\fR or \fB\-\-keys\fR for that:
|
|
621
|
+
.
|
|
622
|
+
.IP "" 4
|
|
623
|
+
.
|
|
624
|
+
.nf
|
|
625
|
+
|
|
626
|
+
$ echo \'{"name": "trent", "age": 38}\' | json \-k
|
|
627
|
+
[
|
|
628
|
+
"name",
|
|
629
|
+
"age"
|
|
630
|
+
]
|
|
631
|
+
$ echo \'{"name": "trent", "age": 38}\' | json \-ka
|
|
632
|
+
name
|
|
633
|
+
age
|
|
634
|
+
.
|
|
635
|
+
.fi
|
|
636
|
+
.
|
|
637
|
+
.IP "" 0
|
|
638
|
+
.
|
|
639
|
+
.SH "FEATURE: In\-place editing"
|
|
640
|
+
You can edit a file in place with \fB\-I\fR and \fB\-f FILE\fR:
|
|
641
|
+
.
|
|
642
|
+
.IP "" 4
|
|
643
|
+
.
|
|
644
|
+
.nf
|
|
645
|
+
|
|
646
|
+
$ cat config\.json
|
|
647
|
+
{"hostname":"127\.0\.0\.1"}
|
|
648
|
+
|
|
649
|
+
$ json \-I \-f config\.json # format the file
|
|
650
|
+
json: updated "config\.json" in\-place
|
|
651
|
+
$ cat config\.json
|
|
652
|
+
{
|
|
653
|
+
"hostname": "127\.0\.0\.1"
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
$ json \-I \-f config\.json \-e \'this\.port=8080\' # add port field
|
|
657
|
+
json: updated "config\.json" in\-place
|
|
658
|
+
$ cat config\.json
|
|
659
|
+
{
|
|
660
|
+
"hostname": "127\.0\.0\.1",
|
|
661
|
+
"port": 8080
|
|
662
|
+
}
|
|
663
|
+
.
|
|
664
|
+
.fi
|
|
665
|
+
.
|
|
666
|
+
.IP "" 0
|
|
667
|
+
.
|
|
668
|
+
.P
|
|
669
|
+
Some limitations\. Only one file at a time:
|
|
670
|
+
.
|
|
671
|
+
.IP "" 4
|
|
672
|
+
.
|
|
673
|
+
.nf
|
|
674
|
+
|
|
675
|
+
$ json \-I \-f foo\.json \-f bar\.json
|
|
676
|
+
json: error: must specify exactly one file with \'\-f FILE\' to use \-I/\-\-in\-place
|
|
677
|
+
.
|
|
678
|
+
.fi
|
|
679
|
+
.
|
|
680
|
+
.IP "" 0
|
|
681
|
+
.
|
|
682
|
+
.P
|
|
683
|
+
Lookups are not allowed:
|
|
684
|
+
.
|
|
685
|
+
.IP "" 4
|
|
686
|
+
.
|
|
687
|
+
.nf
|
|
688
|
+
|
|
689
|
+
$ json \-I \-f foo\.json key\.subkey
|
|
690
|
+
json: error: lookups cannot be specified with in\-place editing (\-I/\-\-in\-place), too easy to lose content
|
|
691
|
+
.
|
|
692
|
+
.fi
|
|
693
|
+
.
|
|
694
|
+
.IP "" 0
|
|
695
|
+
.
|
|
696
|
+
.P
|
|
697
|
+
because that can too easily result in data loss, e\.g\. with something like:
|
|
698
|
+
.
|
|
699
|
+
.IP "" 4
|
|
700
|
+
.
|
|
701
|
+
.nf
|
|
702
|
+
|
|
703
|
+
$ json \-I \-f *\.json # if there is more than one match to the glob
|
|
704
|
+
json: error: lookups cannot be specified with in\-place editing (\-I/\-\-in\-place), too easy to lose content
|
|
705
|
+
.
|
|
706
|
+
.fi
|
|
707
|
+
.
|
|
708
|
+
.IP "" 0
|
|
709
|
+
.
|
|
710
|
+
.SH "OPTIONS"
|
|
711
|
+
.
|
|
712
|
+
.TP
|
|
713
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
714
|
+
Print this help info and exit\.
|
|
715
|
+
.
|
|
716
|
+
.TP
|
|
717
|
+
\fB\-\-version\fR
|
|
718
|
+
Print version of this command and exit\.
|
|
719
|
+
.
|
|
720
|
+
.TP
|
|
721
|
+
\fB\-q, \-\-quiet\fR
|
|
722
|
+
Don\'t warn if input isn\'t valid JSON\.
|
|
723
|
+
.
|
|
724
|
+
.P
|
|
725
|
+
By default \fBjson\fR will process input from stdin\. Alternatively, an input file (or files) can be specified:
|
|
726
|
+
.
|
|
727
|
+
.TP
|
|
728
|
+
\fB\-f FILE\fR
|
|
729
|
+
Specify an input file (instead of stdin)\.
|
|
730
|
+
.
|
|
731
|
+
.P
|
|
732
|
+
By default \fBjson\fR output is to stdout\. Together with \fB\-f FILE\fR, in\-place editing can be done:
|
|
733
|
+
.
|
|
734
|
+
.TP
|
|
735
|
+
\fB\-I\fR, \fB\-\-in\-place\fR
|
|
736
|
+
Edit the file given with \fB\-f FILE\fR in\-place\. Lookups are not allowed with in\-place editing, because it is too easy to accidentally lose file data\.
|
|
737
|
+
.
|
|
738
|
+
.P
|
|
739
|
+
If your JSON output is a REST API response, it might include the headers (e\.g\. when calling with \fBcurl \-i\fR)\. By default \fBjson\fR will pass those headers through (without choking on them)\. However if you want them stripped you can use:
|
|
740
|
+
.
|
|
741
|
+
.TP
|
|
742
|
+
\fB\-H\fR
|
|
743
|
+
drop any HTTP header block (as from \fBcurl \-i \.\.\.\fR)
|
|
744
|
+
.
|
|
745
|
+
.P
|
|
746
|
+
Other pre\-JSON input handling:
|
|
747
|
+
.
|
|
748
|
+
.TP
|
|
749
|
+
\fB\-g\fR, \fB\-\-group\fR
|
|
750
|
+
Group adjacent objects into an array of objects, or concatenate adjacent arrays into a single array\.
|
|
751
|
+
.
|
|
752
|
+
.TP
|
|
753
|
+
\fB\-\-merge\fR, \fB\-\-deep\-merge\fR
|
|
754
|
+
Merge adjacent objects into a single object with merged keys\. Values in later objects win\. Use \fB\-\-deep\-merge\fR to recursively merge keys in objects\.
|
|
755
|
+
.
|
|
756
|
+
.TP
|
|
757
|
+
\fB\-M\fR, \fB\-\-items\fR
|
|
758
|
+
Itemize an object into an array of \fB{"key": <key>, "value": <value>}\fR objects for easier processing\.
|
|
759
|
+
.
|
|
760
|
+
.P
|
|
761
|
+
You can process elements of an input array separately and generate tabular output:
|
|
762
|
+
.
|
|
763
|
+
.TP
|
|
764
|
+
\fB\-a\fR, \fB\-\-array\fR
|
|
765
|
+
Process input as an array of separate inputs and output in tabular form\.
|
|
766
|
+
.
|
|
767
|
+
.TP
|
|
768
|
+
\fB\-d DELIM\fR
|
|
769
|
+
Delimiter character for tabular output (default is \' \')\. This supports JSON escapes \fIhttps://tools\.ietf\.org/html/rfc7159#section\-7\fR, e\.g\.: \'\et\' for tab or \'\eu0000\' for the null byte\.
|
|
770
|
+
.
|
|
771
|
+
.TP
|
|
772
|
+
\fB\-A\fR
|
|
773
|
+
Process input as a single object, i\.e\. stop \fB\-e\fR and \fB\-c\fR automatically processing each item of an input array\.
|
|
774
|
+
.
|
|
775
|
+
.P
|
|
776
|
+
You can execute code on (\fB\-e\fR) and filter (\fB\-c\fR) the input (this is done before LOOKUPS are processed, if any)\.
|
|
777
|
+
.
|
|
778
|
+
.TP
|
|
779
|
+
\fB\-e CODE\fR
|
|
780
|
+
Execute the given JavaScript code on the input\. If input is an array, then each item of the array is processed separately (use \fB\-A\fR to override)\. Use \fBthis\.\fR to access fields on the object being processed\. (\fB\-E CODE\fR is a now deprecated synonym\.)
|
|
781
|
+
.
|
|
782
|
+
.TP
|
|
783
|
+
\fB\-c CODE\fR
|
|
784
|
+
Filter the input with JavaScript \fBCODE\fR\. If \fBCODE\fR returns false\-y, then the item is filtered out\. If input is an array, then each item of the array is processed separately (use \fB\-A\fR to override)\. Use \fBthis\.\fR to access fields on the object being processed\. An explicit \fBreturn\fR is required if \fBCODE\fR includes multiple statements\. (\fB\-C CODE\fR is a now deprecated synonym\.)
|
|
785
|
+
.
|
|
786
|
+
.P
|
|
787
|
+
Finally, if \fBLOOKUP\fR arguments are given, these are extracted from the JSON\. By default \fB\.\fR is used as a separator for nested object lookup\. This can be overridden:
|
|
788
|
+
.
|
|
789
|
+
.TP
|
|
790
|
+
\fB\-D DELIM\fR
|
|
791
|
+
Delimiter char between LOOKUPS (default is \'\.\')\. For example: \fB$ echo \'{"a\.b": {"b": 1}}\' | json \-D / a\.b/b\fR
|
|
792
|
+
.
|
|
793
|
+
.P
|
|
794
|
+
An alternative to lookups is to output the keys of the input object:
|
|
795
|
+
.
|
|
796
|
+
.TP
|
|
797
|
+
\fB\-k\fR, \fB\-\-keys\fR
|
|
798
|
+
Output the input object\'s keys\.
|
|
799
|
+
.
|
|
800
|
+
.P
|
|
801
|
+
\fBjson\fR can be restricting to just validating its input, i\.e\. processing and output of the input is skipped:
|
|
802
|
+
.
|
|
803
|
+
.TP
|
|
804
|
+
\fB\-n\fR, \fB\-\-validate\fR
|
|
805
|
+
Just validate the input, no processing or output of the JSON content\.
|
|
806
|
+
.
|
|
807
|
+
.P
|
|
808
|
+
By default \fBjson\fR outputs in "jsony" mode\. Basically this is JSON output, with the exception that a single string output value is emitted without the quotes\. The intention here is to be of most use to the UNIX command\-line\. Other output formats are supported:
|
|
809
|
+
.
|
|
810
|
+
.TP
|
|
811
|
+
\fB\-o MODE\fR, \fB\-\-output MODE\fR
|
|
812
|
+
Specify an output mode\. One of \fBjsony\fR (the default; JSON, if a single string then quotes are elided), \fBjson\fR (JSON output, 2\-space indent), or \fBinspect\fR (node\.js \fButil\.inspect\fR output)\. \fBjson\fR and \fBjsony\fR modes can specify an indentation via \fBjson\-N\fR or \fBjsony\-N\fR for N\-space indentation (e\.g\. \fBjson\-4\fR), or via \fBjson\-tab\fR or \fBjsony\-tab\fR for TAB indentation\.
|
|
813
|
+
.
|
|
814
|
+
.TP
|
|
815
|
+
\fB\-i\fR
|
|
816
|
+
Shortcut for \fB\-o inspect\fR\.
|
|
817
|
+
.
|
|
818
|
+
.TP
|
|
819
|
+
\fB\-j\fR
|
|
820
|
+
Shortcut for \fB\-o json\fR\.
|
|
821
|
+
.
|
|
822
|
+
.TP
|
|
823
|
+
\fB\-0\fR, \fB\-2\fR, \fB\-4\fR
|
|
824
|
+
Set the JSON indentation without changing the mode\.
|
|
825
|
+
.
|
|
826
|
+
.SH "ENVIRONMENT"
|
|
827
|
+
.
|
|
828
|
+
.TP
|
|
829
|
+
\fBJSON_EXEC=vm\fR
|
|
830
|
+
Set this to turn on the old (pre\-v9) behaviour of \fB\-e CODE\fR and \fB\-c CODE\fR\.
|
|
831
|
+
.
|
|
832
|
+
.SH "EXAMPLES"
|
|
833
|
+
A typical JSON REST API response:
|
|
834
|
+
.
|
|
835
|
+
.IP "" 4
|
|
836
|
+
.
|
|
837
|
+
.nf
|
|
838
|
+
|
|
839
|
+
$ curl \-s http://ifconfig\.me/all\.json
|
|
840
|
+
{"connection":"","ip_addr":"216\.57\.203\.67","lang":"","remote_host":\.\.\.
|
|
841
|
+
.
|
|
842
|
+
.fi
|
|
843
|
+
.
|
|
844
|
+
.IP "" 0
|
|
845
|
+
.
|
|
846
|
+
.P
|
|
847
|
+
\fBNice output by default\fR:
|
|
848
|
+
.
|
|
849
|
+
.IP "" 4
|
|
850
|
+
.
|
|
851
|
+
.nf
|
|
852
|
+
|
|
853
|
+
$ curl \-s http://ifconfig\.me/all\.json | json
|
|
854
|
+
{
|
|
855
|
+
"connection": "",
|
|
856
|
+
"ip_addr": "201\.73\.103\.12",
|
|
857
|
+
"lang": "",
|
|
858
|
+
"remote_host": "",
|
|
859
|
+
"user_agent": "curl/7\.23\.1 (i386\-sun\-solaris2\.11) libcurl/7\.23\.1 OpenSSL/0\.9\.8w zlib/1\.2\.3 libidn/1\.23 libssh2/1\.2\.2",
|
|
860
|
+
"charset": "",
|
|
861
|
+
"port": "63713",
|
|
862
|
+
"via": "",
|
|
863
|
+
"forwarded": "",
|
|
864
|
+
"mime": "*/*",
|
|
865
|
+
"keep_alive": "",
|
|
866
|
+
"encoding": ""
|
|
867
|
+
}
|
|
868
|
+
.
|
|
869
|
+
.fi
|
|
870
|
+
.
|
|
871
|
+
.IP "" 0
|
|
872
|
+
.
|
|
873
|
+
.P
|
|
874
|
+
Say you just want to \fBextract one value\fR:
|
|
875
|
+
.
|
|
876
|
+
.IP "" 4
|
|
877
|
+
.
|
|
878
|
+
.nf
|
|
879
|
+
|
|
880
|
+
$ curl \-s http://ifconfig\.me/all\.json | json ip_addr
|
|
881
|
+
201\.73\.103\.12
|
|
882
|
+
.
|
|
883
|
+
.fi
|
|
884
|
+
.
|
|
885
|
+
.IP "" 0
|
|
886
|
+
.
|
|
887
|
+
.P
|
|
888
|
+
Or, looking at the node\.js project \fIhttps://github\.com/joyent/node\fR using the Github API:
|
|
889
|
+
.
|
|
890
|
+
.IP "" 4
|
|
891
|
+
.
|
|
892
|
+
.nf
|
|
893
|
+
|
|
894
|
+
$ curl \-s https://api\.github\.com/repos/joyent/node | json open_issues
|
|
895
|
+
517
|
|
896
|
+
.
|
|
897
|
+
.fi
|
|
898
|
+
.
|
|
899
|
+
.IP "" 0
|
|
900
|
+
.
|
|
901
|
+
.P
|
|
902
|
+
If you use \fBcurl \-i\fR to get HTTP headers (because perhaps they contain relevant information), \fBjson will skip the HTTP headers automatically\fR:
|
|
903
|
+
.
|
|
904
|
+
.IP "" 4
|
|
905
|
+
.
|
|
906
|
+
.nf
|
|
907
|
+
|
|
908
|
+
$ curl \-is https://api\.github\.com/repos/joyent/node | json
|
|
909
|
+
HTTP/1\.1 200 OK
|
|
910
|
+
Server: nginx/1\.0\.13
|
|
911
|
+
Date: Tue, 24 Jul 2012 04:01:08 GMT
|
|
912
|
+
Content\-Type: application/json; charset=utf\-8
|
|
913
|
+
Connection: keep\-alive
|
|
914
|
+
Status: 200 OK
|
|
915
|
+
ETag: "1a21d980a01768dde42145ce2b58694c"
|
|
916
|
+
X\-RateLimit\-Remaining: 4997
|
|
917
|
+
Content\-Length: 1513
|
|
918
|
+
Cache\-Control: public, max\-age=60
|
|
919
|
+
Vary: Accept
|
|
920
|
+
X\-RateLimit\-Limit: 5000
|
|
921
|
+
Last\-Modified: Tue, 24 Jul 2012 03:50:11 GMT
|
|
922
|
+
|
|
923
|
+
{
|
|
924
|
+
"master_branch": "master",
|
|
925
|
+
"has_issues": true,
|
|
926
|
+
"has_downloads": false,
|
|
927
|
+
"homepage": "http://nodejs\.org/",
|
|
928
|
+
"html_url": "https://github\.com/joyent/node",
|
|
929
|
+
\.\.\.
|
|
930
|
+
.
|
|
931
|
+
.fi
|
|
932
|
+
.
|
|
933
|
+
.IP "" 0
|
|
934
|
+
.
|
|
935
|
+
.P
|
|
936
|
+
Or, say you are stuck with the headers in your pipeline, \fB\'json \-H\' will drop HTTP headers\fR:
|
|
937
|
+
.
|
|
938
|
+
.IP "" 4
|
|
939
|
+
.
|
|
940
|
+
.nf
|
|
941
|
+
|
|
942
|
+
$ curl \-is https://api\.github\.com/repos/joyent/node | json \-H forks
|
|
943
|
+
2158
|
|
944
|
+
.
|
|
945
|
+
.fi
|
|
946
|
+
.
|
|
947
|
+
.IP "" 0
|
|
948
|
+
.
|
|
949
|
+
.P
|
|
950
|
+
Here is \fBan example that shows indexing a list\fR\. (The given "lookup" argument is basically JavaScript code appended, with \'\.\' if necessary, to the JSON data and eval\'d\.)
|
|
951
|
+
.
|
|
952
|
+
.IP "" 4
|
|
953
|
+
.
|
|
954
|
+
.nf
|
|
955
|
+
|
|
956
|
+
$ curl \-s https://api\.github\.com/legacy/repos/search/nodejs \e
|
|
957
|
+
| json \'repositories[2]\.name\'
|
|
958
|
+
socket\.io
|
|
959
|
+
.
|
|
960
|
+
.fi
|
|
961
|
+
.
|
|
962
|
+
.IP "" 0
|
|
963
|
+
.
|
|
964
|
+
.P
|
|
965
|
+
Having the quote to avoid shell interpretation of \'[\' is annoying, so \fBjson\fR allows a special case for an integer lookup:
|
|
966
|
+
.
|
|
967
|
+
.IP "" 4
|
|
968
|
+
.
|
|
969
|
+
.nf
|
|
970
|
+
|
|
971
|
+
$ curl \-s https://api\.github\.com/legacy/repos/search/nodejs \e
|
|
972
|
+
| json \'repositories\.2\.name\'
|
|
973
|
+
socket\.io
|
|
974
|
+
.
|
|
975
|
+
.fi
|
|
976
|
+
.
|
|
977
|
+
.IP "" 0
|
|
978
|
+
.
|
|
979
|
+
.SS "Array processing with \-a"
|
|
980
|
+
\fBjson\fR includes the \fB\-a\fR (aka \fB\-\-array\fR) option for \fBprocessing each element of an input JSON array independently\fR and \fBusing tabular output\fR\. Let\'s first get a list of open node\.js issues (note that this is a subset because of GH API pagination \fIhttp://developer\.github\.com/v3/#pagination\fR):
|
|
981
|
+
.
|
|
982
|
+
.IP "" 4
|
|
983
|
+
.
|
|
984
|
+
.nf
|
|
985
|
+
|
|
986
|
+
$ curl \-s https://api\.github\.com/repos/joyent/node/issues?state=open\e&per_page=100
|
|
987
|
+
[
|
|
988
|
+
{
|
|
989
|
+
"number": 3757,
|
|
990
|
+
"html_url": "https://github\.com/joyent/node/issues/3757",
|
|
991
|
+
"body": "Fix #3756\.\en\enReview, please: @TooTallNate",
|
|
992
|
+
"milestone": null,
|
|
993
|
+
"user": {
|
|
994
|
+
"gravatar_id": "73a2b24daecb976af81e010b7a3ce3c6",
|
|
995
|
+
"login": "isaacs",
|
|
996
|
+
"avatar_url": "https://secure\.gravatar\.com/avatar/73a2b24dae\.\.\.
|
|
997
|
+
\.\.\.
|
|
998
|
+
.
|
|
999
|
+
.fi
|
|
1000
|
+
.
|
|
1001
|
+
.IP "" 0
|
|
1002
|
+
.
|
|
1003
|
+
.P
|
|
1004
|
+
We can then print a table with just some fields as follows:
|
|
1005
|
+
.
|
|
1006
|
+
.IP "" 4
|
|
1007
|
+
.
|
|
1008
|
+
.nf
|
|
1009
|
+
|
|
1010
|
+
$ curl \-s https://api\.github\.com/repos/joyent/node/issues?state=open\e&per_page=100 \e
|
|
1011
|
+
| json \-a comments number title
|
|
1012
|
+
0 3757 readline: Remove event listeners on close
|
|
1013
|
+
0 3756 readline: No way to completely unhook interface from input/output
|
|
1014
|
+
1 3755 node\-v0\.6\.20 hello example segfaults on RaspberryPi (w/Arch + bash)
|
|
1015
|
+
0 3753 Prohibit same listeners in EventEmitter\. Closes #964\.
|
|
1016
|
+
1 3752 Auto\-detect hardfloat eabi and armv7 variables on ARM based on compiler
|
|
1017
|
+
3 3751 persistent REPL history
|
|
1018
|
+
0 3749 glibc errors on SheevaPlug / Debian Squeeze
|
|
1019
|
+
\.\.\.
|
|
1020
|
+
.
|
|
1021
|
+
.fi
|
|
1022
|
+
.
|
|
1023
|
+
.IP "" 0
|
|
1024
|
+
.
|
|
1025
|
+
.P
|
|
1026
|
+
Ultimately this can be useful for then using other command\-line tools\. For example, we could get the list of top\-five most commented open node issues:
|
|
1027
|
+
.
|
|
1028
|
+
.IP "" 4
|
|
1029
|
+
.
|
|
1030
|
+
.nf
|
|
1031
|
+
|
|
1032
|
+
$ curl \-s https://api\.github\.com/repos/joyent/node/issues?state=open\e&per_page=100 \e
|
|
1033
|
+
| json \-a comments number title | sort \-n | tail \-5
|
|
1034
|
+
9 3510 Automatically `\.toString()` functions in REPL\.
|
|
1035
|
+
11 3668 JSON documentation index listing
|
|
1036
|
+
12 3624 Add a return value to Buffer\.write* methods that returns the \.\.\.
|
|
1037
|
+
12 3655 defer dgram listening event
|
|
1038
|
+
14 3613 Connections closed by node stay permanently in FIN_WAIT2
|
|
1039
|
+
.
|
|
1040
|
+
.fi
|
|
1041
|
+
.
|
|
1042
|
+
.IP "" 0
|
|
1043
|
+
.
|
|
1044
|
+
.P
|
|
1045
|
+
Or get a breakdown by ISO language code of the recent tweets mentioning "nodejs":
|
|
1046
|
+
.
|
|
1047
|
+
.IP "" 4
|
|
1048
|
+
.
|
|
1049
|
+
.nf
|
|
1050
|
+
|
|
1051
|
+
$ curl \-s http://search\.twitter\.com/search\.json?q=nodejs\e&rpp=100 \e
|
|
1052
|
+
| json results | json \-a iso_language_code | sort | uniq \-c | sort
|
|
1053
|
+
1 es
|
|
1054
|
+
1 no
|
|
1055
|
+
1 th
|
|
1056
|
+
4 ru
|
|
1057
|
+
12 ja
|
|
1058
|
+
23 pt
|
|
1059
|
+
58 en
|
|
1060
|
+
.
|
|
1061
|
+
.fi
|
|
1062
|
+
.
|
|
1063
|
+
.IP "" 0
|
|
1064
|
+
.
|
|
1065
|
+
.P
|
|
1066
|
+
The \fB\fB\-d\fR option can be used to specify a delimiter\fR:
|
|
1067
|
+
.
|
|
1068
|
+
.IP "" 4
|
|
1069
|
+
.
|
|
1070
|
+
.nf
|
|
1071
|
+
|
|
1072
|
+
$ curl \-s https://api\.github\.com/repos/joyent/node/issues?state=open \e
|
|
1073
|
+
| json \-a created_at number title \-d,
|
|
1074
|
+
2012\-07\-24T03:45:03Z,3757,readline: Remove event listeners on close
|
|
1075
|
+
2012\-07\-24T03:32:10Z,3756,readline: No way to completely unhook inte\.\.\.
|
|
1076
|
+
2012\-07\-23T21:17:50Z,3755,node\-v0\.6\.20 hello example segfaults on Ra\.\.\.
|
|
1077
|
+
2012\-07\-22T16:17:49Z,3753,Prohibit same listeners in EventEmitter\. C\.\.\.
|
|
1078
|
+
2012\-07\-22T13:43:40Z,3752,Auto\-detect hardfloat eabi and armv7 varia\.\.\.
|
|
1079
|
+
.
|
|
1080
|
+
.fi
|
|
1081
|
+
.
|
|
1082
|
+
.IP "" 0
|
|
1083
|
+
.
|
|
1084
|
+
.SH "COMPATIBILITY"
|
|
1085
|
+
The json tool major version is incremented when there is a backward incompatible change\. An overview of those changes is here\.
|
|
1086
|
+
.
|
|
1087
|
+
.IP "\(bu" 4
|
|
1088
|
+
v9: \fB\-e CODE\fR and \fB\-c CODE\fR switch away from using \fBvm\.runInNewContext\fR for processing\. In other words they now do what \fB\-E\fR and \fB\-C\fR do, and the uppercase options are not deprecated synonyms\. Use the \fBJSON_EXEC=vm\fR environment variable to bring back the old behaviour\.
|
|
1089
|
+
.
|
|
1090
|
+
.IP "\(bu" 4
|
|
1091
|
+
v8: No incompatible change\. The npm registry name changed from \'jsontool\' to \'json\'\.
|
|
1092
|
+
.
|
|
1093
|
+
.IP "\(bu" 4
|
|
1094
|
+
v7: \fB\-E CODE\fR and \fB\-C CODE\fR were added in favour of \fB\-e CODE\fR and \fB\-c CODE\fR because the former provide a 10x or more performance improvement for larger inputs\. The latter are still included for backward compatibility\. \fB\-E/\-C\fR use a JavaScript function to execute CODE, which \fB\-e/\-c\fR use node\.js\'s \fBvm\.runInNewContext\fR which is crazy slow\. Use of a JavaScript function places slightly different semantics and requirements on the given \fBCODE\fR, so new options were required for compat\.
|
|
1095
|
+
.
|
|
1096
|
+
.IP "\(bu" 4
|
|
1097
|
+
v6: Grouping (via \fB\-g\fR or \fB\-\-group\fR) of adjacent \fIarrays\fR no longer groups arrays separated by no space\. I\.e\. adjacent arrays must be separated by a newline\.
|
|
1098
|
+
.
|
|
1099
|
+
.IP "\(bu" 4
|
|
1100
|
+
v5: Special case the output for \fBa single lookup AND JSON output\fR (i\.e\. \fB\-j\fR or \fB\-o json*\fR) to only output the value instead of the more general array or table that is necessary for multiple lookups\.
|
|
1101
|
+
.
|
|
1102
|
+
.IP "\(bu" 4
|
|
1103
|
+
v4: Made "auto\-arrayification" require an explicit \'\-g\' or \'\-\-group\' option to prefer that implicit processing never magically fix otherwise invalid JSON\. The feature is now called grouping\.
|
|
1104
|
+
.
|
|
1105
|
+
.IP "\(bu" 4
|
|
1106
|
+
v3: Cleaned up json and "jsony" output formatting to be more consistent, especially for array processing\.
|
|
1107
|
+
.
|
|
1108
|
+
.IP "" 0
|
|
1109
|
+
.
|
|
1110
|
+
.P
|
|
1111
|
+
See the changelog \fIhttps://github\.com/trentm/json/blob/master/CHANGES\.md\fR for full compatibility and change details\.
|
|
1112
|
+
.
|
|
1113
|
+
.SH "INSTALL, PROJECT, BUGS"
|
|
1114
|
+
\fBjson\fR is written in JavaScript and requires node\.js (\fBnode\fR)\. You can either install via \fBnpm\fR:
|
|
1115
|
+
.
|
|
1116
|
+
.IP "" 4
|
|
1117
|
+
.
|
|
1118
|
+
.nf
|
|
1119
|
+
|
|
1120
|
+
npm install \-g json
|
|
1121
|
+
.
|
|
1122
|
+
.fi
|
|
1123
|
+
.
|
|
1124
|
+
.IP "" 0
|
|
1125
|
+
.
|
|
1126
|
+
.P
|
|
1127
|
+
or manually get the script and put it on your PATH somewhere (\fBjson\fR is a single file with no external deps other than node itself):
|
|
1128
|
+
.
|
|
1129
|
+
.IP "" 4
|
|
1130
|
+
.
|
|
1131
|
+
.nf
|
|
1132
|
+
|
|
1133
|
+
cd ~/bin
|
|
1134
|
+
curl \-L https://github\.com/trentm/json/raw/master/lib/json\.js > json
|
|
1135
|
+
chmod 755 json
|
|
1136
|
+
.
|
|
1137
|
+
.fi
|
|
1138
|
+
.
|
|
1139
|
+
.IP "" 0
|
|
1140
|
+
.
|
|
1141
|
+
.P
|
|
1142
|
+
(Note: Before version 8, this tool was called "jsontool" in the npm registry\. That name is now defunct\.)
|
|
1143
|
+
.
|
|
1144
|
+
.P
|
|
1145
|
+
This project lives at \fIhttps://github\.com/trentm/json\fR\. Please report bugs to \fIhttps://github\.com/trentm/json/issues\fR\. See the full changelog at: \fIhttps://github\.com/trentm/json/blob/master/CHANGES\.md\fR\.
|
|
1146
|
+
.
|
|
1147
|
+
.SH "LICENSE"
|
|
1148
|
+
MIT License (see \fIhttps://github\.com/trentm/json/blob/master/LICENSE\.txt\fR)
|
|
1149
|
+
.
|
|
1150
|
+
.SH "COPYRIGHT"
|
|
1151
|
+
json is Copyright 2021 Trent Mick and Copyright 2020 Joyent Inc\.
|