This commit is contained in:
duan 2024-09-10 16:51:56 +08:00
parent 842a5ce7ab
commit 6ebcb6e00d
36 changed files with 2485 additions and 3135 deletions

View File

@ -1,10 +1,43 @@
{
"name": "fast-json-stable-stringify",
"version": "2.1.0",
"description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify",
"main": "index.js",
"types": "index.d.ts",
"_args": [
[
"fast-json-stable-stringify@2.1.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "fast-json-stable-stringify@2.1.0",
"_id": "fast-json-stable-stringify@2.1.0",
"_inBundle": false,
"_integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
"_location": "/fast-json-stable-stringify",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fast-json-stable-stringify@2.1.0",
"name": "fast-json-stable-stringify",
"escapedName": "fast-json-stable-stringify",
"rawSpec": "2.1.0",
"saveSpec": null,
"fetchSpec": "2.1.0"
},
"_requiredBy": [
"/sass-loader/ajv"
],
"_resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"_spec": "2.1.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/epoberezkin/fast-json-stable-stringify/issues"
},
"dependencies": {},
"description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
@ -16,15 +49,6 @@
"pre-commit": "^1.2.2",
"tape": "^4.11.0"
},
"scripts": {
"eslint": "eslint index.js test",
"test-spec": "tape test/*.js",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/epoberezkin/fast-json-stable-stringify.git"
},
"homepage": "https://github.com/epoberezkin/fast-json-stable-stringify",
"keywords": [
"json",
@ -33,12 +57,9 @@
"hash",
"stable"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT",
"main": "index.js",
"name": "fast-json-stable-stringify",
"nyc": {
"exclude": [
"test",
@ -48,5 +69,16 @@
"lcov",
"text-summary"
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/epoberezkin/fast-json-stable-stringify.git"
},
"scripts": {
"eslint": "eslint index.js test",
"test": "npm run eslint && nyc npm run test-spec",
"test-spec": "tape test/*.js"
},
"types": "index.d.ts",
"version": "2.1.0"
}

92
node_modules/fastq/package.json generated vendored
View File

@ -1,37 +1,44 @@
{
"name": "fastq",
"version": "1.17.1",
"description": "Fast, in memory work queue",
"main": "queue.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js",
"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js",
"test:report": "npm run lint && npm run unit:report",
"test": "npm run lint && npm run unit",
"typescript": "tsc --project ./test/tsconfig.json",
"legacy": "tape test/test.js"
},
"pre-commit": [
"test",
"typescript"
"_args": [
[
"fastq@1.17.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastq.git"
"_development": true,
"_from": "fastq@1.17.1",
"_id": "fastq@1.17.1",
"_inBundle": false,
"_integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
"_location": "/fastq",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fastq@1.17.1",
"name": "fastq",
"escapedName": "fastq",
"rawSpec": "1.17.1",
"saveSpec": null,
"fetchSpec": "1.17.1"
},
"keywords": [
"fast",
"queue",
"async",
"worker"
"_requiredBy": [
"/@nodelib/fs.walk"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "ISC",
"_resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.17.1.tgz",
"_spec": "1.17.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
"bugs": {
"url": "https://github.com/mcollina/fastq/issues"
},
"homepage": "https://github.com/mcollina/fastq#readme",
"dependencies": {
"reusify": "^1.0.4"
},
"description": "Fast, in memory work queue",
"devDependencies": {
"async": "^3.1.0",
"neo-async": "^2.6.1",
@ -42,12 +49,37 @@
"tape": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"reusify": "^1.0.4"
"homepage": "https://github.com/mcollina/fastq#readme",
"keywords": [
"fast",
"queue",
"async",
"worker"
],
"license": "ISC",
"main": "queue.js",
"name": "fastq",
"pre-commit": [
"test",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastq.git"
},
"scripts": {
"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js",
"legacy": "tape test/test.js",
"lint": "standard --verbose | snazzy",
"test": "npm run lint && npm run unit",
"test:report": "npm run lint && npm run unit:report",
"typescript": "tsc --project ./test/tsconfig.json",
"unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js"
},
"standard": {
"ignore": [
"example.mjs"
]
}
},
"version": "1.17.1"
}

103
node_modules/fill-range/package.json generated vendored
View File

@ -1,43 +1,77 @@
{
"name": "fill-range",
"description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`",
"version": "7.1.1",
"homepage": "https://github.com/jonschlinkert/fill-range",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Edo Rivai (edo.rivai.nl)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Paul Miller (paulmillr.com)",
"Rouven Weßling (www.rouvenwessling.de)",
"(https://github.com/wtgtybhertgeghgtwtg)"
"_args": [
[
"fill-range@7.1.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "jonschlinkert/fill-range",
"_development": true,
"_from": "fill-range@7.1.1",
"_id": "fill-range@7.1.1",
"_inBundle": false,
"_integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"_location": "/fill-range",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fill-range@7.1.1",
"name": "fill-range",
"escapedName": "fill-range",
"rawSpec": "7.1.1",
"saveSpec": null,
"fetchSpec": "7.1.1"
},
"_requiredBy": [
"/braces"
],
"_resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
"_spec": "7.1.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/fill-range/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Edo Rivai",
"url": "edo.rivai.nl"
},
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
},
{
"name": "Paul Miller",
"url": "paulmillr.com"
},
{
"name": "Rouven Weßling",
"url": "www.rouvenwessling.de"
},
{
"url": "https://github.com/wtgtybhertgeghgtwtg"
}
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
"mocha": "mocha --reporter dot",
"test": "npm run lint && npm run mocha",
"test:ci": "npm run test:cover",
"test:cover": "nyc npm run mocha"
},
"dependencies": {
"to-regex-range": "^5.0.1"
},
"description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`",
"devDependencies": {
"gulp-format-md": "^2.0.0",
"mocha": "^6.1.1",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/fill-range",
"keywords": [
"alpha",
"alphabetical",
@ -58,6 +92,20 @@
"regex",
"sh"
],
"license": "MIT",
"main": "index.js",
"name": "fill-range",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/fill-range.git"
},
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
"mocha": "mocha --reporter dot",
"test": "npm run lint && npm run mocha",
"test:ci": "npm run test:cover",
"test:cover": "nyc npm run mocha"
},
"verb": {
"toc": false,
"layout": "default",
@ -70,5 +118,6 @@
"lint": {
"reflinks": true
}
}
},
"version": "7.1.1"
}

106
node_modules/glob-parent/package.json generated vendored
View File

@ -1,30 +1,55 @@
{
"name": "glob-parent",
"version": "6.0.2",
"description": "Extract the non-magic parent path from a glob string.",
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
"_args": [
[
"glob-parent@6.0.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "glob-parent@6.0.2",
"_id": "glob-parent@6.0.2",
"_inBundle": false,
"_integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"_location": "/glob-parent",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "glob-parent@6.0.2",
"name": "glob-parent",
"escapedName": "glob-parent",
"rawSpec": "6.0.2",
"saveSpec": null,
"fetchSpec": "6.0.2"
},
"_requiredBy": [
"/copy-webpack-plugin"
],
"_resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz",
"_spec": "6.0.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Gulp Team",
"email": "team@gulpjs.com",
"url": "https://gulpjs.com/"
},
"bugs": {
"url": "https://github.com/gulpjs/glob-parent/issues"
},
"contributors": [
"Elan Shanker (https://github.com/es128)",
"Blaine Bublitz <blaine.bublitz@gmail.com>"
{
"name": "Elan Shanker",
"url": "https://github.com/es128"
},
{
"name": "Blaine Bublitz",
"email": "blaine.bublitz@gmail.com"
}
],
"repository": "gulpjs/glob-parent",
"license": "ISC",
"engines": {
"node": ">=10.13.0"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js"
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha --async-only"
},
"dependencies": {
"is-glob": "^4.0.3"
},
"description": "Extract the non-magic parent path from a glob string.",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-gulp": "^5.0.0",
@ -32,15 +57,14 @@
"mocha": "^7.1.2",
"nyc": "^15.0.1"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"prettier": {
"singleQuote": true
"engines": {
"node": ">=10.13.0"
},
"files": [
"LICENSE",
"index.js"
],
"homepage": "https://github.com/gulpjs/glob-parent#readme",
"keywords": [
"glob",
"parent",
@ -50,5 +74,27 @@
"directory",
"base",
"wildcard"
]
],
"license": "ISC",
"main": "index.js",
"name": "glob-parent",
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/gulpjs/glob-parent.git"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha --async-only"
},
"version": "6.0.2"
}

220
node_modules/globby/package.json generated vendored
View File

@ -1,94 +1,130 @@
{
"name": "globby",
"version": "14.0.2",
"description": "User-friendly glob matching",
"license": "MIT",
"repository": "sindresorhus/globby",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js",
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts",
"ignore.js",
"utilities.js"
],
"keywords": [
"all",
"array",
"directories",
"expand",
"files",
"filesystem",
"filter",
"find",
"fnmatch",
"folders",
"fs",
"glob",
"globbing",
"globs",
"gulpfriendly",
"match",
"matcher",
"minimatch",
"multi",
"multiple",
"paths",
"pattern",
"patterns",
"traverse",
"util",
"utility",
"wildcard",
"wildcards",
"promise",
"gitignore",
"git"
],
"dependencies": {
"@sindresorhus/merge-streams": "^2.1.0",
"fast-glob": "^3.3.2",
"ignore": "^5.2.4",
"path-type": "^5.0.0",
"slash": "^5.1.0",
"unicorn-magic": "^0.1.0"
},
"devDependencies": {
"@globby/main-branch": "sindresorhus/globby#main",
"@types/node": "^20.9.0",
"ava": "^5.3.1",
"benchmark": "2.1.4",
"glob-stream": "^8.0.0",
"tempy": "^3.1.0",
"tsd": "^0.30.4",
"xo": "^0.57.0"
},
"xo": {
"ignores": [
"fixtures"
]
},
"ava": {
"files": [
"!tests/utilities.js"
],
"workerThreads": false
}
"_args": [
[
"globby@14.0.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "globby@14.0.2",
"_id": "globby@14.0.2",
"_inBundle": false,
"_integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==",
"_location": "/globby",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "globby@14.0.2",
"name": "globby",
"escapedName": "globby",
"rawSpec": "14.0.2",
"saveSpec": null,
"fetchSpec": "14.0.2"
},
"_requiredBy": [
"/copy-webpack-plugin"
],
"_resolved": "https://registry.npmmirror.com/globby/-/globby-14.0.2.tgz",
"_spec": "14.0.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"ava": {
"files": [
"!tests/utilities.js"
],
"workerThreads": false
},
"bugs": {
"url": "https://github.com/sindresorhus/globby/issues"
},
"dependencies": {
"@sindresorhus/merge-streams": "^2.1.0",
"fast-glob": "^3.3.2",
"ignore": "^5.2.4",
"path-type": "^5.0.0",
"slash": "^5.1.0",
"unicorn-magic": "^0.1.0"
},
"description": "User-friendly glob matching",
"devDependencies": {
"@globby/main-branch": "github:sindresorhus/globby#main",
"@types/node": "^20.9.0",
"ava": "^5.3.1",
"benchmark": "2.1.4",
"glob-stream": "^8.0.0",
"tempy": "^3.1.0",
"tsd": "^0.30.4",
"xo": "^0.57.0"
},
"engines": {
"node": ">=18"
},
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"files": [
"index.js",
"index.d.ts",
"ignore.js",
"utilities.js"
],
"funding": "https://github.com/sponsors/sindresorhus",
"homepage": "https://github.com/sindresorhus/globby#readme",
"keywords": [
"all",
"array",
"directories",
"expand",
"files",
"filesystem",
"filter",
"find",
"fnmatch",
"folders",
"fs",
"glob",
"globbing",
"globs",
"gulpfriendly",
"match",
"matcher",
"minimatch",
"multi",
"multiple",
"paths",
"pattern",
"patterns",
"traverse",
"util",
"utility",
"wildcard",
"wildcards",
"promise",
"gitignore",
"git"
],
"license": "MIT",
"name": "globby",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/globby.git"
},
"scripts": {
"bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js",
"test": "xo && ava && tsd"
},
"sideEffects": false,
"type": "module",
"version": "14.0.2",
"xo": {
"ignores": [
"fixtures"
]
}
}

110
node_modules/gm-crypto/package.json generated vendored
View File

@ -1,44 +1,49 @@
{
"name": "gm-crypto",
"version": "0.1.8",
"description": "An implementation of GM/T industry standards",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"types": "types/index.d.ts",
"files": [
"types",
"dist"
"_args": [
[
"gm-crypto@0.1.8",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"scripts": {
"commit": "cz",
"clean": "rm -rf dist",
"build": "npm run clean && microbundle --entry src/index.js --sourcemap false",
"build:coverage": "npm run clean && microbundle --entry src/index.js --sourcemap true",
"test": "npm run build:coverage && nyc --reporter=text --reporter=lcovonly ava -v",
"prepublishOnly": "npm run build"
"_from": "gm-crypto@0.1.8",
"_id": "gm-crypto@0.1.8",
"_inBundle": false,
"_integrity": "sha512-gbTkobkbj3F70HJDQNhN9JNTvcR3O1YQJ0xGc8jTc4bZ1KuikmkjuFm5kZhyUbWxK/PwWDpPuTNyGwRYOopBLw==",
"_location": "/gm-crypto",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "gm-crypto@0.1.8",
"name": "gm-crypto",
"escapedName": "gm-crypto",
"rawSpec": "0.1.8",
"saveSpec": null,
"fetchSpec": "0.1.8"
},
"repository": {
"type": "git",
"url": "git@github.com:byte-fe/gm-crypto.git"
},
"keywords": [
"sm2",
"sm3",
"sm4",
"zuc",
"gm",
"crypto"
"_requiredBy": [
"/"
],
"author": "panjizhi1987@gmail.com",
"license": "MIT",
"_resolved": "https://registry.npmmirror.com/gm-crypto/-/gm-crypto-0.1.8.tgz",
"_spec": "0.1.8",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "panjizhi1987@gmail.com"
},
"bugs": {
"url": "https://github.com/byte-fe/gm-crypto/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"buffer": "^5.7.0",
"jsbn": "^1.1.0",
"to-arraybuffer": "^1.0.1"
},
"description": "An implementation of GM/T industry standards",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
@ -50,15 +55,44 @@
"nyc": "^15.1.0",
"prettier": "^2.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"esmodule": "dist/index.modern.js",
"files": [
"types",
"dist"
],
"homepage": "https://github.com/byte-fe/gm-crypto#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
}
},
"keywords": [
"sm2",
"sm3",
"sm4",
"zuc",
"gm",
"crypto"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"name": "gm-crypto",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/byte-fe/gm-crypto.git"
},
"scripts": {
"build": "npm run clean && microbundle --entry src/index.js --sourcemap false",
"build:coverage": "npm run clean && microbundle --entry src/index.js --sourcemap true",
"clean": "rm -rf dist",
"commit": "cz",
"prepublishOnly": "npm run build",
"test": "npm run build:coverage && nyc --reporter=text --reporter=lcovonly ava -v"
},
"types": "types/index.d.ts",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"version": "0.1.8"
}

85
node_modules/ieee754/package.json generated vendored
View File

@ -1,40 +1,52 @@
{
"name": "ieee754",
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
"version": "1.2.1",
"_args": [
[
"ieee754@1.2.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_from": "ieee754@1.2.1",
"_id": "ieee754@1.2.1",
"_inBundle": false,
"_integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"_location": "/ieee754",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "ieee754@1.2.1",
"name": "ieee754",
"escapedName": "ieee754",
"rawSpec": "1.2.1",
"saveSpec": null,
"fetchSpec": "1.2.1"
},
"_requiredBy": [
"/buffer"
],
"_resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
"_spec": "1.2.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/ieee754/issues"
},
"contributors": [
"Romain Beauxis <toots@rastageeks.org>"
{
"name": "Romain Beauxis",
"email": "toots@rastageeks.org"
}
],
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
"devDependencies": {
"airtap": "^3.0.0",
"standard": "*",
"tape": "^5.0.1"
},
"keywords": [
"IEEE 754",
"buffer",
"convert",
"floating point",
"ieee754"
],
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/feross/ieee754.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"funding": [
{
"type": "github",
@ -48,5 +60,28 @@
"type": "consulting",
"url": "https://feross.org/support"
}
]
],
"homepage": "https://github.com/feross/ieee754#readme",
"keywords": [
"IEEE 754",
"buffer",
"convert",
"floating point",
"ieee754"
],
"license": "BSD-3-Clause",
"main": "index.js",
"name": "ieee754",
"repository": {
"type": "git",
"url": "git://github.com/feross/ieee754.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"types": "index.d.ts",
"version": "1.2.1"
}

124
node_modules/ignore/package.json generated vendored
View File

@ -1,55 +1,40 @@
{
"name": "ignore",
"version": "5.3.1",
"description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
"files": [
"legacy.js",
"index.js",
"index.d.ts",
"LICENSE-MIT"
"_args": [
[
"ignore@5.3.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "babel -o legacy.js index.js",
"test:lint": "eslint .",
"test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
"test:ts": "node ./test/ts/simple.js",
"tap": "tap --reporter classic",
"test:git": "npm run tap test/git-check-ignore.js",
"test:ignore": "npm run tap test/ignore.js",
"test:others": "npm run tap test/others.js",
"test:cases": "npm run tap test/*.js -- --coverage",
"test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
"test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
"test": "npm run test:only",
"test:win32": "IGNORE_TEST_WIN32=1 npm run test",
"report": "tap --coverage-report=html",
"posttest": "npm run report && codecov"
"_development": true,
"_from": "ignore@5.3.1",
"_id": "ignore@5.3.1",
"_inBundle": false,
"_integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
"_location": "/ignore",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "ignore@5.3.1",
"name": "ignore",
"escapedName": "ignore",
"rawSpec": "5.3.1",
"saveSpec": null,
"fetchSpec": "5.3.1"
},
"repository": {
"type": "git",
"url": "git@github.com:kaelzhang/node-ignore.git"
},
"keywords": [
"ignore",
".gitignore",
"gitignore",
"npmignore",
"rules",
"manager",
"filter",
"regexp",
"regex",
"fnmatch",
"glob",
"asterisks",
"regular-expression"
"_requiredBy": [
"/globby"
],
"author": "kael",
"license": "MIT",
"_resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.1.tgz",
"_spec": "5.3.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "kael"
},
"bugs": {
"url": "https://github.com/kaelzhang/node-ignore/issues"
},
"description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
@ -69,5 +54,52 @@
},
"engines": {
"node": ">= 4"
}
},
"files": [
"legacy.js",
"index.js",
"index.d.ts",
"LICENSE-MIT"
],
"homepage": "https://github.com/kaelzhang/node-ignore#readme",
"keywords": [
"ignore",
".gitignore",
"gitignore",
"npmignore",
"rules",
"manager",
"filter",
"regexp",
"regex",
"fnmatch",
"glob",
"asterisks",
"regular-expression"
],
"license": "MIT",
"name": "ignore",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kaelzhang/node-ignore.git"
},
"scripts": {
"build": "babel -o legacy.js index.js",
"posttest": "npm run report && codecov",
"prepublishOnly": "npm run build",
"report": "tap --coverage-report=html",
"tap": "tap --reporter classic",
"test": "npm run test:only",
"test:cases": "npm run tap test/*.js -- --coverage",
"test:git": "npm run tap test/git-check-ignore.js",
"test:ignore": "npm run tap test/ignore.js",
"test:lint": "eslint .",
"test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
"test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
"test:others": "npm run tap test/others.js",
"test:ts": "node ./test/ts/simple.js",
"test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
"test:win32": "IGNORE_TEST_WIN32=1 npm run test"
},
"version": "5.3.1"
}

71
node_modules/is-extglob/package.json generated vendored
View File

@ -1,28 +1,52 @@
{
"name": "is-extglob",
"description": "Returns true if a string has an extglob.",
"version": "2.1.1",
"homepage": "https://github.com/jonschlinkert/is-extglob",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/is-extglob",
"_args": [
[
"is-extglob@2.1.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "is-extglob@2.1.1",
"_id": "is-extglob@2.1.1",
"_inBundle": false,
"_integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"_location": "/is-extglob",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-extglob@2.1.1",
"name": "is-extglob",
"escapedName": "is-extglob",
"rawSpec": "2.1.1",
"saveSpec": null,
"fetchSpec": "2.1.1"
},
"_requiredBy": [
"/is-glob"
],
"_resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
"_spec": "2.1.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/is-extglob/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"description": "Returns true if a string has an extglob.",
"devDependencies": {
"gulp-format-md": "^0.1.10",
"mocha": "^3.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/is-extglob",
"keywords": [
"bash",
"braces",
@ -42,6 +66,16 @@
"string",
"test"
],
"license": "MIT",
"main": "index.js",
"name": "is-extglob",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/is-extglob.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": false,
"layout": "default",
@ -65,5 +99,6 @@
"lint": {
"reflinks": true
}
}
},
"version": "2.1.1"
}

89
node_modules/is-glob/package.json generated vendored
View File

@ -1,36 +1,72 @@
{
"name": "is-glob",
"description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.",
"version": "4.0.3",
"homepage": "https://github.com/micromatch/is-glob",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Daniel Perez (https://tuvistavie.com)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
"_args": [
[
"is-glob@4.0.3",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "micromatch/is-glob",
"_development": true,
"_from": "is-glob@4.0.3",
"_id": "is-glob@4.0.3",
"_inBundle": false,
"_integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"_location": "/is-glob",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-glob@4.0.3",
"name": "is-glob",
"escapedName": "is-glob",
"rawSpec": "4.0.3",
"saveSpec": null,
"fetchSpec": "4.0.3"
},
"_requiredBy": [
"/chokidar",
"/chokidar/glob-parent",
"/fast-glob/glob-parent",
"/glob-parent"
],
"_resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
"_spec": "4.0.3",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/micromatch/is-glob/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Brian Woodward",
"url": "https://twitter.com/doowb"
},
{
"name": "Daniel Perez",
"url": "https://tuvistavie.com"
},
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
}
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha && node benchmark.js"
},
"dependencies": {
"is-extglob": "^2.1.1"
},
"description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.",
"devDependencies": {
"gulp-format-md": "^0.1.10",
"mocha": "^3.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/micromatch/is-glob",
"keywords": [
"bash",
"braces",
@ -50,6 +86,16 @@
"string",
"test"
],
"license": "MIT",
"main": "index.js",
"name": "is-glob",
"repository": {
"type": "git",
"url": "git+https://github.com/micromatch/is-glob.git"
},
"scripts": {
"test": "mocha && node benchmark.js"
},
"verb": {
"layout": "default",
"plugins": [
@ -77,5 +123,6 @@
"verb",
"vinyl"
]
}
},
"version": "4.0.3"
}

86
node_modules/is-number/package.json generated vendored
View File

@ -1,35 +1,68 @@
{
"name": "is-number",
"description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
"version": "7.0.0",
"homepage": "https://github.com/jonschlinkert/is-number",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Olsten Larck (https://i.am.charlike.online)",
"Rouven Weßling (www.rouvenwessling.de)"
"_args": [
[
"is-number@7.0.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "jonschlinkert/is-number",
"_development": true,
"_from": "is-number@7.0.0",
"_id": "is-number@7.0.0",
"_inBundle": false,
"_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"_location": "/is-number",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-number@7.0.0",
"name": "is-number",
"escapedName": "is-number",
"rawSpec": "7.0.0",
"saveSpec": null,
"fetchSpec": "7.0.0"
},
"_requiredBy": [
"/to-regex-range"
],
"_resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
"_spec": "7.0.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/is-number/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
},
{
"name": "Olsten Larck",
"url": "https://i.am.charlike.online"
},
{
"name": "Rouven Weßling",
"url": "www.rouvenwessling.de"
}
],
"main": "index.js",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "mocha"
},
"description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
"devDependencies": {
"ansi": "^0.3.1",
"benchmark": "^2.1.4",
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">=0.12.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/is-number",
"keywords": [
"cast",
"check",
@ -58,6 +91,16 @@
"typeof",
"value"
],
"license": "MIT",
"main": "index.js",
"name": "is-number",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/is-number.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": false,
"layout": "default",
@ -78,5 +121,6 @@
"lint": {
"reflinks": true
}
}
},
"version": "7.0.0"
}

81
node_modules/js-base64/package.json generated vendored
View File

@ -1,15 +1,45 @@
{
"name": "js-base64",
"version": "3.7.2",
"description": "Yet another Base64 transcoder in pure-JS",
"main": "base64.js",
"module": "base64.mjs",
"types": "base64.d.ts",
"files": [
"base64.js",
"base64.mjs",
"base64.d.ts"
"_args": [
[
"js-base64@3.7.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_from": "js-base64@3.7.2",
"_id": "js-base64@3.7.2",
"_inBundle": false,
"_integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==",
"_location": "/js-base64",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "js-base64@3.7.2",
"name": "js-base64",
"escapedName": "js-base64",
"rawSpec": "3.7.2",
"saveSpec": null,
"fetchSpec": "3.7.2"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.2.tgz",
"_spec": "3.7.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Dan Kogai"
},
"bugs": {
"url": "https://github.com/dankogai/js-base64/issues"
},
"description": "Yet another Base64 transcoder in pure-JS",
"devDependencies": {
"@types/node": "^14.0.26",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"typescript": "^3.9.7"
},
"exports": {
".": {
"import": "./base64.mjs",
@ -17,20 +47,27 @@
},
"./package.json": "./package.json"
},
"scripts": {
"test": "make clean && make test"
},
"devDependencies": {
"@types/node": "^14.0.26",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"typescript": "^3.9.7"
},
"repository": "git+https://github.com/dankogai/js-base64.git",
"files": [
"base64.js",
"base64.mjs",
"base64.d.ts"
],
"homepage": "https://github.com/dankogai/js-base64#readme",
"keywords": [
"base64",
"binary"
],
"author": "Dan Kogai",
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "base64.js",
"module": "base64.mjs",
"name": "js-base64",
"repository": {
"type": "git",
"url": "git+https://github.com/dankogai/js-base64.git"
},
"scripts": {
"test": "make clean && make test"
},
"types": "base64.d.ts",
"version": "3.7.2"
}

58
node_modules/jsbn/package.json generated vendored
View File

@ -1,21 +1,55 @@
{
"name": "jsbn",
"version": "1.1.0",
"_args": [
[
"jsbn@1.1.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_from": "jsbn@1.1.0",
"_id": "jsbn@1.1.0",
"_inBundle": false,
"_integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
"_location": "/jsbn",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "jsbn@1.1.0",
"name": "jsbn",
"escapedName": "jsbn",
"rawSpec": "1.1.0",
"saveSpec": null,
"fetchSpec": "1.1.0"
},
"_requiredBy": [
"/gm-crypto"
],
"_resolved": "https://registry.npmmirror.com/jsbn/-/jsbn-1.1.0.tgz",
"_spec": "1.1.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Tom Wu"
},
"bugs": {
"url": "https://github.com/andyperlitch/jsbn/issues"
},
"description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.",
"main": "index.js",
"scripts": {
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/andyperlitch/jsbn.git"
},
"homepage": "https://github.com/andyperlitch/jsbn#readme",
"keywords": [
"biginteger",
"bignumber",
"big",
"integer"
],
"author": "Tom Wu",
"license": "MIT"
"license": "MIT",
"main": "index.js",
"name": "jsbn",
"repository": {
"type": "git",
"url": "git+https://github.com/andyperlitch/jsbn.git"
},
"scripts": {
"test": "mocha test.js"
},
"version": "1.1.0"
}

View File

@ -1,35 +1,55 @@
{
"name": "json-schema-traverse",
"version": "1.0.0",
"description": "Traverse JSON Schema passing each schema object to callback",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"eslint": "eslint index.js spec",
"test-spec": "mocha spec -R spec",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-schema-traverse.git"
},
"keywords": [
"JSON-Schema",
"traverse",
"iterate"
"_args": [
[
"json-schema-traverse@1.0.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"_development": true,
"_from": "json-schema-traverse@1.0.0",
"_id": "json-schema-traverse@1.0.0",
"_inBundle": false,
"_integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"_location": "/json-schema-traverse",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "json-schema-traverse@1.0.0",
"name": "json-schema-traverse",
"escapedName": "json-schema-traverse",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/ajv"
],
"_resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Evgeny Poberezkin"
},
"bugs": {
"url": "https://github.com/epoberezkin/json-schema-traverse/issues"
},
"homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
"description": "Traverse JSON Schema passing each schema object to callback",
"devDependencies": {
"eslint": "^7.3.1",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
"keywords": [
"JSON-Schema",
"traverse",
"iterate"
],
"license": "MIT",
"main": "index.js",
"name": "json-schema-traverse",
"nyc": {
"exclude": [
"**/spec/**",
@ -39,5 +59,16 @@
"lcov",
"text-summary"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-schema-traverse.git"
},
"scripts": {
"eslint": "eslint index.js spec",
"test": "npm run eslint && nyc npm run test-spec",
"test-spec": "mocha spec -R spec"
},
"types": "index.d.ts",
"version": "1.0.0"
}

76
node_modules/merge2/package.json generated vendored
View File

@ -1,16 +1,55 @@
{
"name": "merge2",
"description": "Merge multiple streams into one stream in sequence or parallel.",
"_args": [
[
"merge2@1.4.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "merge2@1.4.1",
"_id": "merge2@1.4.1",
"_inBundle": false,
"_integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"_location": "/merge2",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "merge2@1.4.1",
"name": "merge2",
"escapedName": "merge2",
"rawSpec": "1.4.1",
"saveSpec": null,
"fetchSpec": "1.4.1"
},
"_requiredBy": [
"/fast-glob"
],
"_resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz",
"_spec": "1.4.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"authors": [
"Yan Qing <admin@zensh.com>"
],
"license": "MIT",
"version": "1.4.1",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github.com:teambition/merge2.git"
"bugs": {
"url": "https://github.com/teambition/merge2/issues"
},
"dependencies": {},
"description": "Merge multiple streams into one stream in sequence or parallel.",
"devDependencies": {
"standard": "^14.3.4",
"through2": "^3.0.1",
"thunks": "^4.9.6",
"tman": "^1.10.0",
"to-through": "^2.0.0"
},
"engines": {
"node": ">= 8"
},
"files": [
"README.md",
"index.js"
],
"homepage": "https://github.com/teambition/merge2",
"keywords": [
"merge2",
@ -22,22 +61,15 @@
"merge stream",
"sync"
],
"engines": {
"node": ">= 8"
},
"dependencies": {},
"devDependencies": {
"standard": "^14.3.4",
"through2": "^3.0.1",
"thunks": "^4.9.6",
"tman": "^1.10.0",
"to-through": "^2.0.0"
"license": "MIT",
"main": "./index.js",
"name": "merge2",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/teambition/merge2.git"
},
"scripts": {
"test": "standard && tman"
},
"files": [
"README.md",
"index.js"
]
"version": "1.4.1"
}

170
node_modules/micromatch/package.json generated vendored
View File

@ -1,43 +1,107 @@
{
"name": "micromatch",
"description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
"version": "4.0.7",
"homepage": "https://github.com/micromatch/micromatch",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"(https://github.com/DianeLooney)",
"Amila Welihinda (amilajack.com)",
"Bogdan Chadkin (https://github.com/TrySound)",
"Brian Woodward (https://twitter.com/doowb)",
"Devon Govett (http://badassjs.com)",
"Elan Shanker (https://github.com/es128)",
"Fabrício Matté (https://ultcombo.js.org)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Martin Kolárik (https://kolarik.sk)",
"Olsten Larck (https://i.am.charlike.online)",
"Paul Miller (paulmillr.com)",
"Tom Byrer (https://github.com/tomByrer)",
"Tyler Akins (http://rumkin.com)",
"Peter Bright <drpizza@quiscalusmexicanus.org> (https://github.com/drpizza)",
"Kuba Juszczyk (https://github.com/ku8ar)"
"_args": [
[
"micromatch@4.0.7",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "micromatch/micromatch",
"_development": true,
"_from": "micromatch@4.0.7",
"_id": "micromatch@4.0.7",
"_inBundle": false,
"_integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==",
"_location": "/micromatch",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "micromatch@4.0.7",
"name": "micromatch",
"escapedName": "micromatch",
"rawSpec": "4.0.7",
"saveSpec": null,
"fetchSpec": "4.0.7"
},
"_requiredBy": [
"/fast-glob"
],
"_resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.7.tgz",
"_spec": "4.0.7",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/micromatch/micromatch/issues"
},
"license": "MIT",
"files": ["index.js"],
"main": "index.js",
"engines": {
"node": ">=8.6"
},
"scripts": {
"test": "mocha"
},
"contributors": [
{
"url": "https://github.com/DianeLooney"
},
{
"name": "Amila Welihinda",
"url": "amilajack.com"
},
{
"name": "Bogdan Chadkin",
"url": "https://github.com/TrySound"
},
{
"name": "Brian Woodward",
"url": "https://twitter.com/doowb"
},
{
"name": "Devon Govett",
"url": "http://badassjs.com"
},
{
"name": "Elan Shanker",
"url": "https://github.com/es128"
},
{
"name": "Fabrício Matté",
"url": "https://ultcombo.js.org"
},
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
},
{
"name": "Martin Kolárik",
"url": "https://kolarik.sk"
},
{
"name": "Olsten Larck",
"url": "https://i.am.charlike.online"
},
{
"name": "Paul Miller",
"url": "paulmillr.com"
},
{
"name": "Tom Byrer",
"url": "https://github.com/tomByrer"
},
{
"name": "Tyler Akins",
"url": "http://rumkin.com"
},
{
"name": "Peter Bright",
"email": "drpizza@quiscalusmexicanus.org",
"url": "https://github.com/drpizza"
},
{
"name": "Kuba Juszczyk",
"url": "https://github.com/ku8ar"
}
],
"dependencies": {
"braces": "^3.0.3",
"picomatch": "^2.3.1"
},
"description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
"devDependencies": {
"fill-range": "^7.0.1",
"gulp-format-md": "^2.0.0",
@ -45,6 +109,13 @@
"mocha": "^9.2.2",
"time-require": "github:jonschlinkert/time-require"
},
"engines": {
"node": ">=8.6"
},
"files": [
"index.js"
],
"homepage": "https://github.com/micromatch/micromatch",
"keywords": [
"bash",
"bracket",
@ -85,17 +156,44 @@
"star",
"wildcard"
],
"license": "MIT",
"main": "index.js",
"name": "micromatch",
"repository": {
"type": "git",
"url": "git+https://github.com/micromatch/micromatch.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": "collapsible",
"layout": "default",
"tasks": ["readme"],
"plugins": ["gulp-format-md"],
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": ["braces", "expand-brackets", "extglob", "fill-range", "nanomatch"]
"list": [
"braces",
"expand-brackets",
"extglob",
"fill-range",
"nanomatch"
]
},
"reflinks": ["extglob", "fill-range", "glob-object", "minimatch", "multimatch"]
}
"reflinks": [
"extglob",
"fill-range",
"glob-object",
"minimatch",
"multimatch"
]
},
"version": "4.0.7"
}

60
node_modules/neo-async/package.json generated vendored
View File

@ -1,19 +1,39 @@
{
"name": "neo-async",
"version": "2.6.2",
"description": "Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster ",
"main": "async.js",
"license": "MIT",
"keywords": [
"async",
"util"
"_args": [
[
"neo-async@2.6.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": {
"type": "git",
"url": "git@github.com:suguru03/neo-async.git"
"_development": true,
"_from": "neo-async@2.6.2",
"_id": "neo-async@2.6.2",
"_inBundle": false,
"_integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"_location": "/neo-async",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "neo-async@2.6.2",
"name": "neo-async",
"escapedName": "neo-async",
"rawSpec": "2.6.2",
"saveSpec": null,
"fetchSpec": "2.6.2"
},
"_requiredBy": [
"/sass-loader"
],
"_resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz",
"_spec": "2.6.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"browser": "async.min.js",
"bugs": {
"url": "https://github.com/suguru03/neo-async/issues"
},
"homepage": "https://github.com/suguru03/neo-async",
"dependencies": {},
"description": "Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster ",
"devDependencies": {
"aigle": "^1.14.0",
"async": "^2.6.0",
@ -43,15 +63,27 @@
"prettier": "^1.15.2",
"require-dir": "^0.3.0"
},
"homepage": "https://github.com/suguru03/neo-async",
"keywords": [
"async",
"util"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"main": "async.js",
"name": "neo-async",
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"browser": "async.min.js"
}
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/suguru03/neo-async.git"
},
"version": "2.6.2"
}

View File

@ -1,33 +1,65 @@
{
"name": "normalize-path",
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
"version": "3.0.0",
"homepage": "https://github.com/jonschlinkert/normalize-path",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Blaine Bublitz (https://twitter.com/BlaineBublitz)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
"_args": [
[
"normalize-path@3.0.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "jonschlinkert/normalize-path",
"_development": true,
"_from": "normalize-path@3.0.0",
"_id": "normalize-path@3.0.0",
"_inBundle": false,
"_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"_location": "/normalize-path",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "normalize-path@3.0.0",
"name": "normalize-path",
"escapedName": "normalize-path",
"rawSpec": "3.0.0",
"saveSpec": null,
"fetchSpec": "3.0.0"
},
"_requiredBy": [
"/anymatch",
"/chokidar",
"/copy-webpack-plugin"
],
"_resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
"_spec": "3.0.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/normalize-path/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Blaine Bublitz",
"url": "https://twitter.com/BlaineBublitz"
},
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
}
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
"devDependencies": {
"gulp-format-md": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/normalize-path",
"keywords": [
"absolute",
"backslash",
@ -49,6 +81,16 @@
"unix",
"urix"
],
"license": "MIT",
"main": "index.js",
"name": "normalize-path",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/normalize-path.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": false,
"layout": "default",
@ -73,5 +115,6 @@
"lint": {
"reflinks": true
}
}
},
"version": "3.0.0"
}

126
node_modules/path-type/package.json generated vendored
View File

@ -1,47 +1,83 @@
{
"name": "path-type",
"version": "5.0.0",
"description": "Check if a path is a file, directory, or symlink",
"license": "MIT",
"repository": "sindresorhus/path-type",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && nyc ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"path",
"fs",
"type",
"is",
"check",
"directory",
"file",
"filepath",
"symlink",
"symbolic",
"link",
"stat",
"stats",
"filesystem"
],
"devDependencies": {
"ava": "^3.15.0",
"nyc": "^15.1.0",
"tsd": "^0.14.0",
"xo": "^0.37.1"
}
"_args": [
[
"path-type@5.0.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "path-type@5.0.0",
"_id": "path-type@5.0.0",
"_inBundle": false,
"_integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",
"_location": "/path-type",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "path-type@5.0.0",
"name": "path-type",
"escapedName": "path-type",
"rawSpec": "5.0.0",
"saveSpec": null,
"fetchSpec": "5.0.0"
},
"_requiredBy": [
"/globby"
],
"_resolved": "https://registry.npmmirror.com/path-type/-/path-type-5.0.0.tgz",
"_spec": "5.0.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/path-type/issues"
},
"description": "Check if a path is a file, directory, or symlink",
"devDependencies": {
"ava": "^3.15.0",
"nyc": "^15.1.0",
"tsd": "^0.14.0",
"xo": "^0.37.1"
},
"engines": {
"node": ">=12"
},
"exports": "./index.js",
"files": [
"index.js",
"index.d.ts"
],
"funding": "https://github.com/sponsors/sindresorhus",
"homepage": "https://github.com/sindresorhus/path-type#readme",
"keywords": [
"path",
"fs",
"type",
"is",
"check",
"directory",
"file",
"filepath",
"symlink",
"symbolic",
"link",
"stat",
"stats",
"filesystem"
],
"license": "MIT",
"name": "path-type",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/path-type.git"
},
"scripts": {
"test": "xo && nyc ava && tsd"
},
"type": "module",
"version": "5.0.0"
}

85
node_modules/picomatch/package.json generated vendored
View File

@ -1,30 +1,43 @@
{
"name": "picomatch",
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
"version": "2.3.1",
"homepage": "https://github.com/micromatch/picomatch",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"funding": "https://github.com/sponsors/jonschlinkert",
"repository": "micromatch/picomatch",
"_args": [
[
"picomatch@2.3.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "picomatch@2.3.1",
"_id": "picomatch@2.3.1",
"_inBundle": false,
"_integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
"_location": "/picomatch",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "picomatch@2.3.1",
"name": "picomatch",
"escapedName": "picomatch",
"rawSpec": "2.3.1",
"saveSpec": null,
"fetchSpec": "2.3.1"
},
"_requiredBy": [
"/anymatch",
"/micromatch",
"/readdirp"
],
"_resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
"_spec": "2.3.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/micromatch/picomatch/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=8.6"
},
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
"mocha": "mocha --reporter dot",
"test": "npm run lint && npm run mocha",
"test:ci": "npm run test:cover",
"test:cover": "nyc npm run mocha"
},
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
"devDependencies": {
"eslint": "^6.8.0",
"fill-range": "^7.0.1",
@ -33,11 +46,23 @@
"nyc": "^15.0.0",
"time-require": "github:jonschlinkert/time-require"
},
"engines": {
"node": ">=8.6"
},
"files": [
"index.js",
"lib"
],
"funding": "https://github.com/sponsors/jonschlinkert",
"homepage": "https://github.com/micromatch/picomatch",
"keywords": [
"glob",
"match",
"picomatch"
],
"license": "MIT",
"main": "index.js",
"name": "picomatch",
"nyc": {
"reporter": [
"html",
@ -45,6 +70,17 @@
"text-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/micromatch/picomatch.git"
},
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
"mocha": "mocha --reporter dot",
"test": "npm run lint && npm run mocha",
"test:ci": "npm run test:cover",
"test:cover": "nyc npm run mocha"
},
"verb": {
"toc": {
"render": true,
@ -77,5 +113,6 @@
"nanomatch",
"picomatch"
]
}
},
"version": "2.3.1"
}

105
node_modules/punycode/package.json generated vendored
View File

@ -1,14 +1,69 @@
{
"name": "punycode",
"version": "2.3.1",
"_args": [
[
"punycode@2.3.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "punycode@2.3.1",
"_id": "punycode@2.3.1",
"_inBundle": false,
"_integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"_location": "/punycode",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "punycode@2.3.1",
"name": "punycode",
"escapedName": "punycode",
"rawSpec": "2.3.1",
"saveSpec": null,
"fetchSpec": "2.3.1"
},
"_requiredBy": [
"/uri-js"
],
"_resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz",
"_spec": "2.3.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"bugs": {
"url": "https://github.com/mathiasbynens/punycode.js/issues"
},
"contributors": [
{
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
}
],
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
"homepage": "https://mths.be/punycode",
"main": "punycode.js",
"jsnext:main": "punycode.es6.js",
"module": "punycode.es6.js",
"devDependencies": {
"codecov": "^3.8.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=6"
},
"files": [
"LICENSE-MIT.txt",
"punycode.js",
"punycode.es6.js"
],
"homepage": "https://mths.be/punycode",
"jsnext:main": "punycode.es6.js",
"jspm": {
"map": {
"./punycode.js": {
"node": "@node/punycode"
}
}
},
"keywords": [
"punycode",
"unicode",
@ -19,40 +74,16 @@
"domain"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"contributors": [
{
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
}
],
"main": "punycode.js",
"module": "punycode.es6.js",
"name": "punycode",
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/punycode.js.git"
"url": "git+https://github.com/mathiasbynens/punycode.js.git"
},
"bugs": "https://github.com/mathiasbynens/punycode.js/issues",
"files": [
"LICENSE-MIT.txt",
"punycode.js",
"punycode.es6.js"
],
"scripts": {
"test": "mocha tests",
"build": "node scripts/prepublish.js"
"build": "node scripts/prepublish.js",
"test": "mocha tests"
},
"devDependencies": {
"codecov": "^3.8.3",
"nyc": "^15.1.0",
"mocha": "^10.2.0"
},
"jspm": {
"map": {
"./punycode.js": {
"node": "@node/punycode"
}
}
}
"version": "2.3.1"
}

View File

@ -1,7 +1,33 @@
{
"name": "queue-microtask",
"description": "fast, tiny `queueMicrotask` shim for modern engines",
"version": "1.2.3",
"_args": [
[
"queue-microtask@1.2.3",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "queue-microtask@1.2.3",
"_id": "queue-microtask@1.2.3",
"_inBundle": false,
"_integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"_location": "/queue-microtask",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "queue-microtask@1.2.3",
"name": "queue-microtask",
"escapedName": "queue-microtask",
"rawSpec": "1.2.3",
"saveSpec": null,
"fetchSpec": "1.2.3"
},
"_requiredBy": [
"/run-parallel"
],
"_resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz",
"_spec": "1.2.3",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@ -10,6 +36,7 @@
"bugs": {
"url": "https://github.com/feross/queue-microtask/issues"
},
"description": "fast, tiny `queueMicrotask` shim for modern engines",
"devDependencies": {
"standard": "*",
"tape": "^5.2.2"
@ -45,11 +72,13 @@
],
"license": "MIT",
"main": "index.js",
"name": "queue-microtask",
"repository": {
"type": "git",
"url": "git://github.com/feross/queue-microtask.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
},
"version": "1.2.3"
}

View File

@ -1,28 +1,42 @@
{
"name": "randombytes",
"version": "2.1.0",
"description": "random bytes from browserify stand alone",
"main": "index.js",
"scripts": {
"test": "standard && node test.js | tspec",
"phantom": "zuul --phantom -- test.js",
"local": "zuul --local --no-coverage -- test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:crypto-browserify/randombytes.git"
},
"keywords": [
"crypto",
"random"
"_args": [
[
"randombytes@2.1.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "randombytes@2.1.0",
"_id": "randombytes@2.1.0",
"_inBundle": false,
"_integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"_location": "/randombytes",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "randombytes@2.1.0",
"name": "randombytes",
"escapedName": "randombytes",
"rawSpec": "2.1.0",
"saveSpec": null,
"fetchSpec": "2.1.0"
},
"_requiredBy": [
"/serialize-javascript"
],
"_resolved": "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz",
"_spec": "2.1.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": "",
"license": "MIT",
"browser": "browser.js",
"bugs": {
"url": "https://github.com/crypto-browserify/randombytes/issues"
},
"homepage": "https://github.com/crypto-browserify/randombytes",
"browser": "browser.js",
"dependencies": {
"safe-buffer": "^5.1.0"
},
"description": "random bytes from browserify stand alone",
"devDependencies": {
"phantomjs": "^1.9.9",
"standard": "^10.0.2",
@ -30,7 +44,22 @@
"tape": "^4.6.3",
"zuul": "^3.7.2"
},
"dependencies": {
"safe-buffer": "^5.1.0"
}
"homepage": "https://github.com/crypto-browserify/randombytes",
"keywords": [
"crypto",
"random"
],
"license": "MIT",
"main": "index.js",
"name": "randombytes",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/crypto-browserify/randombytes.git"
},
"scripts": {
"local": "zuul --local --no-coverage -- test.js",
"phantom": "zuul --phantom -- test.js",
"test": "standard && node test.js | tspec"
},
"version": "2.1.0"
}

View File

@ -1,28 +1,62 @@
{
"name": "require-from-string",
"version": "2.0.2",
"description": "Require module from string",
"license": "MIT",
"repository": "floatdrop/require-from-string",
"_args": [
[
"require-from-string@2.0.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "require-from-string@2.0.2",
"_id": "require-from-string@2.0.2",
"_inBundle": false,
"_integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
"_location": "/require-from-string",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "require-from-string@2.0.2",
"name": "require-from-string",
"escapedName": "require-from-string",
"rawSpec": "2.0.2",
"saveSpec": null,
"fetchSpec": "2.0.2"
},
"_requiredBy": [
"/ajv"
],
"_resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz",
"_spec": "2.0.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Vsevolod Strukchinsky",
"email": "floatdrop@gmail.com",
"url": "github.com/floatdrop"
},
"bugs": {
"url": "https://github.com/floatdrop/require-from-string/issues"
},
"dependencies": {},
"description": "Require module from string",
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
""
],
"dependencies": {},
"devDependencies": {
"mocha": "*"
}
"homepage": "https://github.com/floatdrop/require-from-string#readme",
"keywords": [],
"license": "MIT",
"name": "require-from-string",
"repository": {
"type": "git",
"url": "git+https://github.com/floatdrop/require-from-string.git"
},
"scripts": {
"test": "mocha"
},
"version": "2.0.2"
}

98
node_modules/reusify/package.json generated vendored
View File

@ -1,14 +1,64 @@
{
"name": "reusify",
"version": "1.0.4",
"description": "Reuse objects and functions with style",
"main": "reusify.js",
"scripts": {
"lint": "standard",
"test": "tape test.js | faucet",
"istanbul": "istanbul cover tape test.js",
"coverage": "npm run istanbul; cat coverage/lcov.info | coveralls"
"_args": [
[
"reusify@1.0.4",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "reusify@1.0.4",
"_id": "reusify@1.0.4",
"_inBundle": false,
"_integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
"_location": "/reusify",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "reusify@1.0.4",
"name": "reusify",
"escapedName": "reusify",
"rawSpec": "1.0.4",
"saveSpec": null,
"fetchSpec": "1.0.4"
},
"_requiredBy": [
"/fastq"
],
"_resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz",
"_spec": "1.0.4",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
"bugs": {
"url": "https://github.com/mcollina/reusify/issues"
},
"description": "Reuse objects and functions with style",
"devDependencies": {
"coveralls": "^2.13.3",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"engines": {
"iojs": ">=1.0.0",
"node": ">=0.10.0"
},
"homepage": "https://github.com/mcollina/reusify#readme",
"keywords": [
"reuse",
"object",
"performance",
"function",
"fast"
],
"license": "MIT",
"main": "reusify.js",
"name": "reusify",
"pre-commit": [
"lint",
"test"
@ -17,29 +67,11 @@
"type": "git",
"url": "git+https://github.com/mcollina/reusify.git"
},
"keywords": [
"reuse",
"object",
"performance",
"function",
"fast"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/reusify/issues"
"scripts": {
"coverage": "npm run istanbul; cat coverage/lcov.info | coveralls",
"istanbul": "istanbul cover tape test.js",
"lint": "standard",
"test": "tape test.js | faucet"
},
"homepage": "https://github.com/mcollina/reusify#readme",
"engines": {
"node": ">=0.10.0",
"iojs": ">=1.0.0"
},
"devDependencies": {
"coveralls": "^2.13.3",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tape": "^4.8.0"
}
"version": "1.0.4"
}

View File

@ -1,7 +1,33 @@
{
"name": "run-parallel",
"description": "Run an array of functions in parallel",
"version": "1.2.0",
"_args": [
[
"run-parallel@1.2.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "run-parallel@1.2.0",
"_id": "run-parallel@1.2.0",
"_inBundle": false,
"_integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"_location": "/run-parallel",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "run-parallel@1.2.0",
"name": "run-parallel",
"escapedName": "run-parallel",
"rawSpec": "1.2.0",
"saveSpec": null,
"fetchSpec": "1.2.0"
},
"_requiredBy": [
"/@nodelib/fs.scandir"
],
"_resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz",
"_spec": "1.2.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@ -13,34 +39,12 @@
"dependencies": {
"queue-microtask": "^1.2.2"
},
"description": "Run an array of functions in parallel",
"devDependencies": {
"airtap": "^3.0.0",
"standard": "*",
"tape": "^5.0.1"
},
"homepage": "https://github.com/feross/run-parallel",
"keywords": [
"parallel",
"async",
"function",
"callback",
"asynchronous",
"run",
"array",
"run parallel"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/run-parallel.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"funding": [
{
"type": "github",
@ -54,5 +58,30 @@
"type": "consulting",
"url": "https://feross.org/support"
}
]
],
"homepage": "https://github.com/feross/run-parallel",
"keywords": [
"parallel",
"async",
"function",
"callback",
"asynchronous",
"run",
"array",
"run parallel"
],
"license": "MIT",
"main": "index.js",
"name": "run-parallel",
"repository": {
"type": "git",
"url": "git://github.com/feross/run-parallel.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"version": "1.2.0"
}

View File

@ -1,7 +1,33 @@
{
"name": "safe-buffer",
"description": "Safer Node.js Buffer API",
"version": "5.2.1",
"_args": [
[
"safe-buffer@5.2.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "safe-buffer@5.2.1",
"_id": "safe-buffer@5.2.1",
"_inBundle": false,
"_integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"_location": "/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "safe-buffer@5.2.1",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "5.2.1",
"saveSpec": null,
"fetchSpec": "5.2.1"
},
"_requiredBy": [
"/randombytes"
],
"_resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
"_spec": "5.2.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@ -10,30 +36,11 @@
"bugs": {
"url": "https://github.com/feross/safe-buffer/issues"
},
"description": "Safer Node.js Buffer API",
"devDependencies": {
"standard": "*",
"tape": "^5.0.0"
},
"homepage": "https://github.com/feross/safe-buffer",
"keywords": [
"buffer",
"buffer allocate",
"node security",
"safe",
"safe-buffer",
"security",
"uninitialized"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"funding": [
{
"type": "github",
@ -47,5 +54,27 @@
"type": "consulting",
"url": "https://feross.org/support"
}
]
],
"homepage": "https://github.com/feross/safe-buffer",
"keywords": [
"buffer",
"buffer allocate",
"node security",
"safe",
"safe-buffer",
"security",
"uninitialized"
],
"license": "MIT",
"main": "index.js",
"name": "safe-buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"types": "index.d.ts",
"version": "5.2.1"
}

View File

@ -1,55 +1,47 @@
{
"name": "schema-utils",
"version": "4.2.0",
"description": "webpack Validation Utils",
"license": "MIT",
"repository": "webpack/schema-utils",
"author": "webpack Contrib (https://github.com/webpack-contrib)",
"homepage": "https://github.com/webpack/schema-utils",
"bugs": "https://github.com/webpack/schema-utils/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"main": "dist/index.js",
"types": "declarations/index.d.ts",
"engines": {
"node": ">= 12.13.0"
},
"scripts": {
"start": "npm run build -- -w",
"clean": "del-cli dist declarations",
"prebuild": "npm run clean",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
"build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"build": "npm-run-all -p \"build:**\"",
"commitlint": "commitlint --from=master",
"security": "npm audit --production",
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
"lint:js": "eslint --cache .",
"lint:types": "tsc --pretty --noEmit",
"lint": "npm-run-all lint:js lint:types fmt:check",
"fmt": "npm run fmt:check -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all fix:js fmt",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"prepare": "npm run build && husky install",
"release": "standard-version"
},
"files": [
"dist",
"declarations"
"_args": [
[
"schema-utils@4.2.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "schema-utils@4.2.0",
"_id": "schema-utils@4.2.0",
"_inBundle": false,
"_integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"_location": "/schema-utils",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "schema-utils@4.2.0",
"name": "schema-utils",
"escapedName": "schema-utils",
"rawSpec": "4.2.0",
"saveSpec": null,
"fetchSpec": "4.2.0"
},
"_requiredBy": [
"/copy-webpack-plugin"
],
"_resolved": "https://registry.npmmirror.com/schema-utils/-/schema-utils-4.2.0.tgz",
"_spec": "4.2.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "webpack Contrib",
"url": "https://github.com/webpack-contrib"
},
"bugs": {
"url": "https://github.com/webpack/schema-utils/issues"
},
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"description": "webpack Validation Utils",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
@ -73,7 +65,52 @@
"typescript": "^4.9.5",
"webpack": "^5.68.0"
},
"engines": {
"node": ">= 12.13.0"
},
"files": [
"dist",
"declarations"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"homepage": "https://github.com/webpack/schema-utils",
"keywords": [
"webpack"
]
],
"license": "MIT",
"main": "dist/index.js",
"name": "schema-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/webpack/schema-utils.git"
},
"scripts": {
"build": "npm-run-all -p \"build:**\"",
"build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
"clean": "del-cli dist declarations",
"commitlint": "commitlint --from=master",
"fix": "npm-run-all fix:js fmt",
"fix:js": "npm run lint:js -- --fix",
"fmt": "npm run fmt:check -- --write",
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
"lint": "npm-run-all lint:js lint:types fmt:check",
"lint:js": "eslint --cache .",
"lint:types": "tsc --pretty --noEmit",
"prebuild": "npm run clean",
"prepare": "npm run build && husky install",
"pretest": "npm run lint",
"release": "standard-version",
"security": "npm audit --production",
"start": "npm run build -- -w",
"test": "npm run test:coverage",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test:only -- --watch"
},
"types": "declarations/index.d.ts",
"version": "4.2.0"
}

View File

@ -1,16 +1,51 @@
{
"name": "serialize-javascript",
"version": "6.0.2",
"_args": [
[
"serialize-javascript@6.0.2",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "serialize-javascript@6.0.2",
"_id": "serialize-javascript@6.0.2",
"_inBundle": false,
"_integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"_location": "/serialize-javascript",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "serialize-javascript@6.0.2",
"name": "serialize-javascript",
"escapedName": "serialize-javascript",
"rawSpec": "6.0.2",
"saveSpec": null,
"fetchSpec": "6.0.2"
},
"_requiredBy": [
"/copy-webpack-plugin"
],
"_resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
"_spec": "6.0.2",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Eric Ferraiuolo",
"email": "edf@ericf.me"
},
"bugs": {
"url": "https://github.com/yahoo/serialize-javascript/issues"
},
"dependencies": {
"randombytes": "^2.1.0"
},
"description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.",
"main": "index.js",
"scripts": {
"benchmark": "node -v && node test/benchmark/serialize.js",
"test": "nyc --reporter=lcov mocha test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yahoo/serialize-javascript.git"
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0"
},
"homepage": "https://github.com/yahoo/serialize-javascript",
"keywords": [
"serialize",
"serialization",
@ -18,19 +53,16 @@
"js",
"json"
],
"author": "Eric Ferraiuolo <edf@ericf.me>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/yahoo/serialize-javascript/issues"
"main": "index.js",
"name": "serialize-javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/yahoo/serialize-javascript.git"
},
"homepage": "https://github.com/yahoo/serialize-javascript",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0"
"scripts": {
"benchmark": "node -v && node test/benchmark/serialize.js",
"test": "nyc --reporter=lcov mocha test/unit"
},
"dependencies": {
"randombytes": "^2.1.0"
}
"version": "6.0.2"
}

110
node_modules/slash/package.json generated vendored
View File

@ -1,39 +1,75 @@
{
"name": "slash",
"version": "5.1.0",
"description": "Convert Windows backslash paths to slash paths",
"license": "MIT",
"repository": "sindresorhus/slash",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"path",
"seperator",
"slash",
"backslash",
"windows",
"convert"
],
"devDependencies": {
"ava": "^5.2.0",
"tsd": "^0.28.1",
"xo": "^0.54.2"
}
"_args": [
[
"slash@5.1.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "slash@5.1.0",
"_id": "slash@5.1.0",
"_inBundle": false,
"_integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
"_location": "/slash",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "slash@5.1.0",
"name": "slash",
"escapedName": "slash",
"rawSpec": "5.1.0",
"saveSpec": null,
"fetchSpec": "5.1.0"
},
"_requiredBy": [
"/globby"
],
"_resolved": "https://registry.npmmirror.com/slash/-/slash-5.1.0.tgz",
"_spec": "5.1.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/slash/issues"
},
"description": "Convert Windows backslash paths to slash paths",
"devDependencies": {
"ava": "^5.2.0",
"tsd": "^0.28.1",
"xo": "^0.54.2"
},
"engines": {
"node": ">=14.16"
},
"exports": "./index.js",
"files": [
"index.js",
"index.d.ts"
],
"funding": "https://github.com/sponsors/sindresorhus",
"homepage": "https://github.com/sindresorhus/slash#readme",
"keywords": [
"path",
"seperator",
"slash",
"backslash",
"windows",
"convert"
],
"license": "MIT",
"name": "slash",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/slash.git"
},
"scripts": {
"test": "xo && ava && tsd"
},
"type": "module",
"types": "./index.d.ts",
"version": "5.1.0"
}

View File

@ -1,18 +1,44 @@
{
"name": "to-arraybuffer",
"version": "1.0.1",
"_args": [
[
"to-arraybuffer@1.0.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_from": "to-arraybuffer@1.0.1",
"_id": "to-arraybuffer@1.0.1",
"_inBundle": false,
"_integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==",
"_location": "/to-arraybuffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "to-arraybuffer@1.0.1",
"name": "to-arraybuffer",
"escapedName": "to-arraybuffer",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/gm-crypto"
],
"_resolved": "https://registry.npmmirror.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "John Hiesey"
},
"bugs": {
"url": "https://github.com/jhiesey/to-arraybuffer/issues"
},
"description": "Get an ArrayBuffer from a Buffer as fast as possible",
"main": "index.js",
"scripts": {
"test": "npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)",
"test-node": "tape test.js",
"test-browser": "zuul --no-coverage -- test.js",
"test-browser-local": "zuul --local 8080 --no-coverage -- test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jhiesey/to-arraybuffer.git"
"devDependencies": {
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/jhiesey/to-arraybuffer#readme",
"keywords": [
"buffer",
"to",
@ -21,14 +47,18 @@
"read",
"only"
],
"author": "John Hiesey",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhiesey/to-arraybuffer/issues"
"main": "index.js",
"name": "to-arraybuffer",
"repository": {
"type": "git",
"url": "git://github.com/jhiesey/to-arraybuffer.git"
},
"homepage": "https://github.com/jhiesey/to-arraybuffer#readme",
"devDependencies": {
"tape": "^4.4.0",
"zuul": "^3.9.0"
}
"scripts": {
"test": "npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)",
"test-browser": "zuul --no-coverage -- test.js",
"test-browser-local": "zuul --local 8080 --no-coverage -- test.js",
"test-node": "tape test.js"
},
"version": "1.0.1"
}

View File

@ -1,31 +1,54 @@
{
"name": "to-regex-range",
"description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.",
"version": "5.0.1",
"homepage": "https://github.com/micromatch/to-regex-range",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Rouven Weßling (www.rouvenwessling.de)"
"_args": [
[
"to-regex-range@5.0.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"repository": "micromatch/to-regex-range",
"_development": true,
"_from": "to-regex-range@5.0.1",
"_id": "to-regex-range@5.0.1",
"_inBundle": false,
"_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"_location": "/to-regex-range",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "to-regex-range@5.0.1",
"name": "to-regex-range",
"escapedName": "to-regex-range",
"rawSpec": "5.0.1",
"saveSpec": null,
"fetchSpec": "5.0.1"
},
"_requiredBy": [
"/fill-range"
],
"_resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
"_spec": "5.0.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/micromatch/to-regex-range/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
},
{
"name": "Rouven Weßling",
"url": "www.rouvenwessling.de"
}
],
"main": "index.js",
"engines": {
"node": ">=8.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"is-number": "^7.0.0"
},
"description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.",
"devDependencies": {
"fill-range": "^6.0.0",
"gulp-format-md": "^2.0.0",
@ -33,6 +56,13 @@
"text-table": "^0.2.0",
"time-diff": "^0.3.1"
},
"engines": {
"node": ">=8.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/micromatch/to-regex-range",
"keywords": [
"bash",
"date",
@ -58,6 +88,16 @@
"regular expression",
"sequence"
],
"license": "MIT",
"main": "index.js",
"name": "to-regex-range",
"repository": {
"type": "git",
"url": "git+https://github.com/micromatch/to-regex-range.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"layout": "default",
"toc": false,
@ -84,5 +124,6 @@
"repeat-string"
]
}
}
},
"version": "5.0.1"
}

View File

@ -1,49 +1,85 @@
{
"name": "unicorn-magic",
"version": "0.1.0",
"description": "Some useful utilities I often need",
"license": "MIT",
"repository": "sindresorhus/unicorn-magic",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"node": "./node.js",
"default": "./default.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsc index.d.ts"
},
"files": [
"node.js",
"default.js",
"index.d.ts"
],
"keywords": [
"utilities",
"util",
"extras",
"url",
"path",
"delay",
"wait",
"settimeout",
"sleep"
],
"devDependencies": {
"ava": "^5.3.1",
"in-range": "^3.0.0",
"time-span": "^5.1.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
}
"_args": [
[
"unicorn-magic@0.1.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "unicorn-magic@0.1.0",
"_id": "unicorn-magic@0.1.0",
"_inBundle": false,
"_integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
"_location": "/unicorn-magic",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "unicorn-magic@0.1.0",
"name": "unicorn-magic",
"escapedName": "unicorn-magic",
"rawSpec": "0.1.0",
"saveSpec": null,
"fetchSpec": "0.1.0"
},
"_requiredBy": [
"/globby"
],
"_resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
"_spec": "0.1.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/unicorn-magic/issues"
},
"description": "Some useful utilities I often need",
"devDependencies": {
"ava": "^5.3.1",
"in-range": "^3.0.0",
"time-span": "^5.1.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
},
"exports": {
"types": "./index.d.ts",
"node": "./node.js",
"default": "./default.js"
},
"files": [
"node.js",
"default.js",
"index.d.ts"
],
"funding": "https://github.com/sponsors/sindresorhus",
"homepage": "https://github.com/sindresorhus/unicorn-magic#readme",
"keywords": [
"utilities",
"util",
"extras",
"url",
"path",
"delay",
"wait",
"settimeout",
"sleep"
],
"license": "MIT",
"name": "unicorn-magic",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/unicorn-magic.git"
},
"scripts": {
"test": "xo && ava && tsc index.d.ts"
},
"sideEffects": false,
"type": "module",
"version": "0.1.0"
}

105
node_modules/uri-js/package.json generated vendored
View File

@ -1,9 +1,58 @@
{
"name": "uri-js",
"version": "4.4.1",
"_args": [
[
"uri-js@4.4.1",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"_development": true,
"_from": "uri-js@4.4.1",
"_id": "uri-js@4.4.1",
"_inBundle": false,
"_integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"_location": "/uri-js",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "uri-js@4.4.1",
"name": "uri-js",
"escapedName": "uri-js",
"rawSpec": "4.4.1",
"saveSpec": null,
"fetchSpec": "4.4.1"
},
"_requiredBy": [
"/ajv",
"/sass-loader/ajv"
],
"_resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz",
"_spec": "4.4.1",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Gary Court",
"email": "gary.court@gmail.com"
},
"bugs": {
"url": "https://github.com/garycourt/uri-js/issues"
},
"dependencies": {
"punycode": "^2.1.0"
},
"description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.",
"main": "dist/es5/uri.all.js",
"types": "dist/es5/uri.all.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"mocha": "^8.2.1",
"mocha-qunit-ui": "^0.1.3",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"sorcery": "^0.10.0",
"typescript": "^2.8.1",
"uglify-js": "^2.8.14"
},
"directories": {
"test": "tests"
},
@ -15,19 +64,7 @@
"CHANGELOG",
"LICENSE"
],
"scripts": {
"build:esnext": "tsc",
"build:es5": "rollup -c && cp dist/esnext/uri.d.ts dist/es5/uri.all.d.ts && npm run build:es5:fix-sourcemap",
"build:es5:fix-sourcemap": "sorcery -i dist/es5/uri.all.js",
"build:es5:min": "uglifyjs dist/es5/uri.all.js --support-ie8 --output dist/es5/uri.all.min.js --in-source-map dist/es5/uri.all.js.map --source-map uri.all.min.js.map --comments --compress --mangle --pure-funcs merge subexp && mv uri.all.min.js.map dist/es5/ && cp dist/es5/uri.all.d.ts dist/es5/uri.all.min.d.ts",
"build": "npm run build:esnext && npm run build:es5 && npm run build:es5:min",
"clean": "rm -rf dist",
"test": "mocha -u mocha-qunit-ui dist/es5/uri.all.js tests/tests.js"
},
"repository": {
"type": "git",
"url": "http://github.com/garycourt/uri-js"
},
"homepage": "https://github.com/garycourt/uri-js",
"keywords": [
"URI",
"IRI",
@ -52,26 +89,22 @@
"RFC6455",
"RFC6874"
],
"author": "Gary Court <gary.court@gmail.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/garycourt/uri-js/issues"
"main": "dist/es5/uri.all.js",
"name": "uri-js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/garycourt/uri-js.git"
},
"homepage": "https://github.com/garycourt/uri-js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"mocha": "^8.2.1",
"mocha-qunit-ui": "^0.1.3",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"sorcery": "^0.10.0",
"typescript": "^2.8.1",
"uglify-js": "^2.8.14"
"scripts": {
"build": "npm run build:esnext && npm run build:es5 && npm run build:es5:min",
"build:es5": "rollup -c && cp dist/esnext/uri.d.ts dist/es5/uri.all.d.ts && npm run build:es5:fix-sourcemap",
"build:es5:fix-sourcemap": "sorcery -i dist/es5/uri.all.js",
"build:es5:min": "uglifyjs dist/es5/uri.all.js --support-ie8 --output dist/es5/uri.all.min.js --in-source-map dist/es5/uri.all.js.map --source-map uri.all.min.js.map --comments --compress --mangle --pure-funcs merge subexp && mv uri.all.min.js.map dist/es5/ && cp dist/es5/uri.all.d.ts dist/es5/uri.all.min.d.ts",
"build:esnext": "tsc",
"clean": "rm -rf dist",
"test": "mocha -u mocha-qunit-ui dist/es5/uri.all.js tests/tests.js"
},
"dependencies": {
"punycode": "^2.1.0"
}
"types": "dist/es5/uri.all.d.ts",
"version": "4.4.1"
}

2380
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,42 @@
<template>
<view>
123
<button class="button" type="primary" @click="toggle('bottom')"><text class="button-text">底部</text></button>
</view>
<!-- 弹窗 -->
<uni-popup ref="popup" background-color="#fff" @change="change">
<view class="popup-content" :class="{ 'popup-height': type === 'left' || type === 'right' }"><text
class="text">popup 内容</text></view>
</uni-popup>
</template>
<script>
export default {
data() {
return {
}
},
setup() {
const toggle = (type) => {
console.log(refs, '调试1')
this.$refs.popup.open(type)
}
},
methods: {
toggle(type) {
this.$refs.popup.open(type)
}
}
}
</script>
<style>
</style>
<style scoped lang="scss">
.popup-content {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
height: 50px;
background-color: #fff;
}
</style>