From 4640af763bb5c3bdab0455aed4e882cedca7cc75 Mon Sep 17 00:00:00 2001 From: saehm Date: Mon, 7 Sep 2020 12:23:01 +0200 Subject: [PATCH] start --- .npmignore | 1 + node_modules/@babel/code-frame/package.json | 64 +-- .../helper-validator-identifier/package.json | 60 +-- node_modules/@babel/highlight/package.json | 66 +-- node_modules/@rollup/plugin-json/package.json | 124 ++--- .../node_modules/estree-walker/package.json | 69 +-- node_modules/@rollup/pluginutils/package.json | 154 +++--- node_modules/@types/estree/package.json | 73 +-- node_modules/@types/node/package.json | 489 +++++++++--------- node_modules/ansi-styles/package.json | 146 +++--- node_modules/buffer-from/package.json | 57 +- node_modules/chalk/package.json | 176 +++---- node_modules/color-convert/package.json | 83 +-- node_modules/color-name/package.json | 60 +-- node_modules/commander/package.json | 78 +-- .../escape-string-regexp/package.json | 78 +-- node_modules/fsevents/LICENSE | 22 + node_modules/fsevents/README.md | 77 +++ node_modules/fsevents/fsevents.d.ts | 55 ++ node_modules/fsevents/fsevents.js | 77 +++ node_modules/fsevents/fsevents.node | Bin 0 -> 36204 bytes node_modules/fsevents/package.json | 66 +++ node_modules/has-flag/package.json | 62 +-- .../node_modules/has-flag/package.json | 126 ++--- .../node_modules/supports-color/package.json | 140 ++--- node_modules/jest-worker/package.json | 56 +- node_modules/js-tokens/package.json | 74 +-- node_modules/merge-stream/package.json | 61 +-- node_modules/picomatch/package.json | 83 +-- node_modules/randombytes/package.json | 73 +-- .../rollup-plugin-terser/package.json | 91 ++-- node_modules/rollup/package.json | 161 +++--- node_modules/safe-buffer/package.json | 67 +-- .../serialize-javascript/package.json | 78 +-- node_modules/source-map-support/package.json | 58 +-- node_modules/source-map/package.json | 254 +++------ node_modules/supports-color/package.json | 140 ++--- node_modules/terser/package.json | 178 +++---- package.json | 8 +- 39 files changed, 1586 insertions(+), 2199 deletions(-) create mode 100644 .npmignore create mode 100644 node_modules/fsevents/LICENSE create mode 100644 node_modules/fsevents/README.md create mode 100644 node_modules/fsevents/fsevents.d.ts create mode 100644 node_modules/fsevents/fsevents.js create mode 100755 node_modules/fsevents/fsevents.node create mode 100644 node_modules/fsevents/package.json diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +node_modules diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json index abbcec3..7ead77f 100644 --- a/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/code-frame/package.json @@ -1,57 +1,29 @@ { - "_from": "@babel/code-frame@^7.10.4", - "_id": "@babel/code-frame@7.10.4", - "_inBundle": false, - "_integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "_location": "/@babel/code-frame", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@babel/code-frame@^7.10.4", - "name": "@babel/code-frame", - "escapedName": "@babel%2fcode-frame", - "scope": "@babel", - "rawSpec": "^7.10.4", - "saveSpec": null, - "fetchSpec": "^7.10.4" - }, - "_requiredBy": [ - "/rollup-plugin-terser" - ], - "_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "_shasum": "168da1a36e90da68ae8d49c0f1b48c7c6249213a", - "_spec": "@babel/code-frame@^7.10.4", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/rollup-plugin-terser", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bugs": { - "url": "https://github.com/babel/babel/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/highlight": "^7.10.4" - }, - "deprecated": false, + "name": "@babel/code-frame", + "version": "7.10.4", "description": "Generate errors that contain a code frame that point to source locations.", - "devDependencies": { - "chalk": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/code-frame", "publishConfig": { "access": "public" }, "repository": { "type": "git", - "url": "git+https://github.com/babel/babel.git", + "url": "https://github.com/babel/babel.git", "directory": "packages/babel-code-frame" }, - "version": "7.10.4" -} + "main": "lib/index.js", + "dependencies": { + "@babel/highlight": "^7.10.4" + }, + "devDependencies": { + "chalk": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df" + +,"_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" +,"_integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" +,"_from": "@babel/code-frame@7.10.4" +} \ No newline at end of file diff --git a/node_modules/@babel/helper-validator-identifier/package.json b/node_modules/@babel/helper-validator-identifier/package.json index 73c389a..fe5092d 100644 --- a/node_modules/@babel/helper-validator-identifier/package.json +++ b/node_modules/@babel/helper-validator-identifier/package.json @@ -1,51 +1,25 @@ { - "_from": "@babel/helper-validator-identifier@^7.10.4", - "_id": "@babel/helper-validator-identifier@7.10.4", - "_inBundle": false, - "_integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "_location": "/@babel/helper-validator-identifier", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@babel/helper-validator-identifier@^7.10.4", - "name": "@babel/helper-validator-identifier", - "escapedName": "@babel%2fhelper-validator-identifier", - "scope": "@babel", - "rawSpec": "^7.10.4", - "saveSpec": null, - "fetchSpec": "^7.10.4" - }, - "_requiredBy": [ - "/@babel/highlight" - ], - "_resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "_shasum": "a78c7a7251e01f616512d31b10adcf52ada5e0d2", - "_spec": "@babel/helper-validator-identifier@^7.10.4", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@babel/highlight", - "bugs": { - "url": "https://github.com/babel/babel/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/helper-validator-identifier", + "version": "7.10.4", "description": "Validate identifier/keywords name", - "devDependencies": { - "charcodes": "^0.2.0", - "unicode-13.0.0": "^0.8.0" + "repository": { + "type": "git", + "url": "https://github.com/babel/babel.git", + "directory": "packages/babel-helper-validator-identifier" }, - "exports": "./lib/index.js", - "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df", - "homepage": "https://github.com/babel/babel#readme", "license": "MIT", - "main": "./lib/index.js", - "name": "@babel/helper-validator-identifier", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/babel/babel.git", - "directory": "packages/babel-helper-validator-identifier" + "main": "./lib/index.js", + "exports": "./lib/index.js", + "devDependencies": { + "charcodes": "^0.2.0", + "unicode-13.0.0": "^0.8.0" }, - "version": "7.10.4" -} + "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df" + +,"_resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz" +,"_integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==" +,"_from": "@babel/helper-validator-identifier@7.10.4" +} \ No newline at end of file diff --git a/node_modules/@babel/highlight/package.json b/node_modules/@babel/highlight/package.json index 183f6e7..ce2041c 100644 --- a/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/highlight/package.json @@ -1,58 +1,30 @@ { - "_from": "@babel/highlight@^7.10.4", - "_id": "@babel/highlight@7.10.4", - "_inBundle": false, - "_integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "_location": "/@babel/highlight", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@babel/highlight@^7.10.4", - "name": "@babel/highlight", - "escapedName": "@babel%2fhighlight", - "scope": "@babel", - "rawSpec": "^7.10.4", - "saveSpec": null, - "fetchSpec": "^7.10.4" - }, - "_requiredBy": [ - "/@babel/code-frame" - ], - "_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "_shasum": "7d1bdfd65753538fabe6c38596cdb76d9ac60143", - "_spec": "@babel/highlight@^7.10.4", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@babel/code-frame", - "author": { - "name": "suchipi", - "email": "me@suchipi.com" - }, - "bugs": { - "url": "https://github.com/babel/babel/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "deprecated": false, + "name": "@babel/highlight", + "version": "7.10.4", "description": "Syntax highlight JavaScript strings for output in terminals.", - "devDependencies": { - "strip-ansi": "^4.0.0" - }, - "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df", + "author": "suchipi ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/highlight", "publishConfig": { "access": "public" }, "repository": { "type": "git", - "url": "git+https://github.com/babel/babel.git", + "url": "https://github.com/babel/babel.git", "directory": "packages/babel-highlight" }, - "version": "7.10.4" -} + "main": "lib/index.js", + "dependencies": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "devDependencies": { + "strip-ansi": "^4.0.0" + }, + "gitHead": "7fd40d86a0d03ff0e9c3ea16b29689945433d4df" + +,"_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz" +,"_integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==" +,"_from": "@babel/highlight@7.10.4" +} \ No newline at end of file diff --git a/node_modules/@rollup/plugin-json/package.json b/node_modules/@rollup/plugin-json/package.json index 50e5bcc..175f8ed 100644 --- a/node_modules/@rollup/plugin-json/package.json +++ b/node_modules/@rollup/plugin-json/package.json @@ -1,53 +1,33 @@ { - "_from": "@rollup/plugin-json", - "_id": "@rollup/plugin-json@4.1.0", - "_inBundle": false, - "_integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==", - "_location": "/@rollup/plugin-json", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "@rollup/plugin-json", - "name": "@rollup/plugin-json", - "escapedName": "@rollup%2fplugin-json", - "scope": "@rollup", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", - "_shasum": "54e09867ae6963c593844d8bd7a9c718294496f3", - "_spec": "@rollup/plugin-json", - "_where": "/home/saehrimnir/Projects/datasets", - "author": { - "name": "rollup" - }, - "ava": { - "files": [ - "!**/fixtures/**", - "!**/helpers/**", - "!**/recipes/**", - "!**/types.ts" - ] - }, - "bugs": { - "url": "https://github.com/rollup/plugins/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@rollup/pluginutils": "^3.0.8" + "name": "@rollup/plugin-json", + "version": "4.1.0", + "publishConfig": { + "access": "public" }, - "deprecated": false, "description": "Convert .json files to ES6 modules", - "devDependencies": { - "@rollup/plugin-buble": "^0.21.0", - "@rollup/plugin-node-resolve": "^7.0.0", - "source-map-support": "^0.5.16" + "license": "MIT", + "repository": "rollup/plugins", + "author": "rollup", + "homepage": "https://github.com/rollup/plugins/tree/master/packages/json#readme", + "bugs": "https://github.com/rollup/plugins/issues", + "main": "dist/index.js", + "scripts": { + "build": "rollup -c", + "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", + "ci:lint": "pnpm run build && pnpm run lint", + "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", + "ci:test": "pnpm run test -- --verbose && pnpm run test:ts", + "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:json && pnpm run lint:package", + "lint:docs": "prettier --single-quote --write README.md", + "lint:js": "eslint --fix --cache src test types --ext .js,.ts", + "lint:json": "prettier --write \"test/fixtures/!(garbage)/*.json\"", + "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", + "prebuild": "del-cli dist", + "prepare": "pnpm run build", + "prepublishOnly": "pnpm run lint && pnpm run test", + "pretest": "pnpm run build", + "test": "ava", + "test:ts": "tsc types/index.d.ts test/types.ts --noEmit" }, "files": [ "dist", @@ -55,7 +35,6 @@ "README.md", "LICENSE" ], - "homepage": "https://github.com/rollup/plugins/tree/master/packages/json#readme", "keywords": [ "rollup", "plugin", @@ -64,38 +43,29 @@ "npm", "modules" ], - "license": "MIT", - "main": "dist/index.js", - "module": "dist/index.es.js", - "name": "@rollup/plugin-json", "peerDependencies": { "rollup": "^1.20.0 || ^2.0.0" }, - "publishConfig": { - "access": "public" + "dependencies": { + "@rollup/pluginutils": "^3.0.8" }, - "repository": { - "type": "git", - "url": "git+https://github.com/rollup/plugins.git" + "devDependencies": { + "@rollup/plugin-buble": "^0.21.0", + "@rollup/plugin-node-resolve": "^7.0.0", + "source-map-support": "^0.5.16" }, - "scripts": { - "build": "rollup -c", - "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", - "ci:lint": "pnpm run build && pnpm run lint", - "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", - "ci:test": "pnpm run test -- --verbose && pnpm run test:ts", - "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:json && pnpm run lint:package", - "lint:docs": "prettier --single-quote --write README.md", - "lint:js": "eslint --fix --cache src test types --ext .js,.ts", - "lint:json": "prettier --write \"test/fixtures/!(garbage)/*.json\"", - "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", - "prebuild": "del-cli dist", - "prepare": "pnpm run build", - "prepublishOnly": "pnpm run lint && pnpm run test", - "pretest": "pnpm run build", - "test": "ava", - "test:ts": "tsc types/index.d.ts test/types.ts --noEmit" + "ava": { + "files": [ + "!**/fixtures/**", + "!**/helpers/**", + "!**/recipes/**", + "!**/types.ts" + ] }, - "types": "types/index.d.ts", - "version": "4.1.0" -} + "module": "dist/index.es.js", + "types": "types/index.d.ts" + +,"_resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz" +,"_integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==" +,"_from": "@rollup/plugin-json@4.1.0" +} \ No newline at end of file diff --git a/node_modules/@rollup/pluginutils/node_modules/estree-walker/package.json b/node_modules/@rollup/pluginutils/node_modules/estree-walker/package.json index a391515..cdf8a9f 100644 --- a/node_modules/@rollup/pluginutils/node_modules/estree-walker/package.json +++ b/node_modules/@rollup/pluginutils/node_modules/estree-walker/package.json @@ -1,36 +1,21 @@ { - "_from": "estree-walker@^1.0.1", - "_id": "estree-walker@1.0.1", - "_inBundle": false, - "_integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", - "_location": "/@rollup/pluginutils/estree-walker", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "estree-walker@^1.0.1", - "name": "estree-walker", - "escapedName": "estree-walker", - "rawSpec": "^1.0.1", - "saveSpec": null, - "fetchSpec": "^1.0.1" - }, - "_requiredBy": [ - "/@rollup/pluginutils" - ], - "_resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "_shasum": "31bc5d612c96b704106b477e6dd5d8aa138cb700", - "_spec": "estree-walker@^1.0.1", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@rollup/pluginutils", - "author": { - "name": "Rich Harris" + "name": "estree-walker", + "description": "Traverse an ESTree-compliant AST", + "version": "1.0.1", + "author": "Rich Harris", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/Rich-Harris/estree-walker" }, - "bugs": { - "url": "https://github.com/Rich-Harris/estree-walker/issues" + "main": "dist/estree-walker.umd.js", + "module": "src/estree-walker.js", + "types": "types/index.d.ts", + "scripts": { + "prepublishOnly": "npm run build && npm test", + "build": "tsc && rollup -c", + "test": "mocha --opts mocha.opts" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Traverse an ESTree-compliant AST", "devDependencies": { "@types/estree": "0.0.39", "mocha": "^5.2.0", @@ -43,21 +28,9 @@ "dist", "types", "README.md" - ], - "homepage": "https://github.com/Rich-Harris/estree-walker#readme", - "license": "MIT", - "main": "dist/estree-walker.umd.js", - "module": "src/estree-walker.js", - "name": "estree-walker", - "repository": { - "type": "git", - "url": "git+https://github.com/Rich-Harris/estree-walker.git" - }, - "scripts": { - "build": "tsc && rollup -c", - "prepublishOnly": "npm run build && npm test", - "test": "mocha --opts mocha.opts" - }, - "types": "types/index.d.ts", - "version": "1.0.1" -} + ] + +,"_resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz" +,"_integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" +,"_from": "estree-walker@1.0.1" +} \ No newline at end of file diff --git a/node_modules/@rollup/pluginutils/package.json b/node_modules/@rollup/pluginutils/package.json index b6f14b3..6f4affc 100644 --- a/node_modules/@rollup/pluginutils/package.json +++ b/node_modules/@rollup/pluginutils/package.json @@ -1,58 +1,56 @@ { - "_from": "@rollup/pluginutils@^3.0.8", - "_id": "@rollup/pluginutils@3.1.0", - "_inBundle": false, - "_integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", - "_location": "/@rollup/pluginutils", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@rollup/pluginutils@^3.0.8", - "name": "@rollup/pluginutils", - "escapedName": "@rollup%2fpluginutils", - "scope": "@rollup", - "rawSpec": "^3.0.8", - "saveSpec": null, - "fetchSpec": "^3.0.8" - }, - "_requiredBy": [ - "/@rollup/plugin-json" - ], - "_resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "_shasum": "706b4524ee6dc8b103b3c995533e5ad680c02b9b", - "_spec": "@rollup/pluginutils@^3.0.8", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@rollup/plugin-json", - "author": { - "name": "Rich Harris", - "email": "richard.a.harris@gmail.com" - }, - "ava": { - "compileEnhancements": false, - "extensions": [ - "ts" - ], - "require": [ - "ts-node/register" - ], - "files": [ - "!**/fixtures/**", - "!**/helpers/**", - "!**/recipes/**", - "!**/types.ts" - ] + "name": "@rollup/pluginutils", + "version": "3.1.0", + "publishConfig": { + "access": "public" }, + "description": "A set of utility functions commonly used by Rollup plugins", + "license": "MIT", + "repository": "rollup/plugins", + "author": "Rich Harris ", + "homepage": "https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme", "bugs": { "url": "https://github.com/rollup/plugins/issues" }, - "bundleDependencies": false, + "main": "./dist/cjs/index.js", + "engines": { + "node": ">= 8.0.0" + }, + "scripts": { + "build": "rollup -c", + "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", + "ci:lint": "pnpm run build && pnpm run lint", + "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", + "ci:test": "pnpm run test -- --verbose", + "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package", + "lint:docs": "prettier --single-quote --write README.md", + "lint:js": "eslint --fix --cache src test types --ext .js,.ts", + "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", + "prebuild": "del-cli dist", + "prepare": "pnpm run build", + "prepublishOnly": "pnpm run lint && pnpm run build", + "pretest": "pnpm run build -- --sourcemap", + "test": "ava" + }, + "files": [ + "dist", + "types", + "README.md", + "LICENSE" + ], + "keywords": [ + "rollup", + "plugin", + "utils" + ], + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + }, "dependencies": { "@types/estree": "0.0.39", "estree-walker": "^1.0.1", "picomatch": "^2.2.2" }, - "deprecated": false, - "description": "A set of utility functions commonly used by Rollup plugins", "devDependencies": { "@rollup/plugin-commonjs": "^11.0.2", "@rollup/plugin-node-resolve": "^7.1.1", @@ -62,62 +60,36 @@ "@types/picomatch": "^2.2.1", "typescript": "^3.7.5" }, - "engines": { - "node": ">= 8.0.0" + "ava": { + "compileEnhancements": false, + "extensions": [ + "ts" + ], + "require": [ + "ts-node/register" + ], + "files": [ + "!**/fixtures/**", + "!**/helpers/**", + "!**/recipes/**", + "!**/types.ts" + ] }, "exports": { "require": "./dist/cjs/index.js", "import": "./dist/es/index.js" }, - "files": [ - "dist", - "types", - "README.md", - "LICENSE" - ], - "homepage": "https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme", - "keywords": [ - "rollup", - "plugin", - "utils" - ], - "license": "MIT", - "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", - "name": "@rollup/pluginutils", "nyc": { "extension": [ ".js", ".ts" ] }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - }, - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/rollup/plugins.git" - }, - "scripts": { - "build": "rollup -c", - "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", - "ci:lint": "pnpm run build && pnpm run lint", - "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", - "ci:test": "pnpm run test -- --verbose", - "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package", - "lint:docs": "prettier --single-quote --write README.md", - "lint:js": "eslint --fix --cache src test types --ext .js,.ts", - "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", - "prebuild": "del-cli dist", - "prepare": "pnpm run build", - "prepublishOnly": "pnpm run lint && pnpm run build", - "pretest": "pnpm run build -- --sourcemap", - "test": "ava" - }, "type": "commonjs", - "types": "types/index.d.ts", - "version": "3.1.0" -} + "types": "types/index.d.ts" + +,"_resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz" +,"_integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" +,"_from": "@rollup/pluginutils@3.1.0" +} \ No newline at end of file diff --git a/node_modules/@types/estree/package.json b/node_modules/@types/estree/package.json index 6bbc178..f2c8ee5 100644 --- a/node_modules/@types/estree/package.json +++ b/node_modules/@types/estree/package.json @@ -1,51 +1,26 @@ { - "_from": "@types/estree@0.0.39", - "_id": "@types/estree@0.0.39", - "_inBundle": false, - "_integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", - "_location": "/@types/estree", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/estree@0.0.39", "name": "@types/estree", - "escapedName": "@types%2festree", - "scope": "@types", - "rawSpec": "0.0.39", - "saveSpec": null, - "fetchSpec": "0.0.39" - }, - "_requiredBy": [ - "/@rollup/pluginutils" - ], - "_resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "_shasum": "e177e699ee1b8c22d23174caaa7422644389509f", - "_spec": "@types/estree@0.0.39", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@rollup/pluginutils", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "RReverser", - "url": "https://github.com/RReverser" - } - ], - "dependencies": {}, - "deprecated": false, - "description": "TypeScript definitions for ESTree AST specification", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/estree", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "typesPublisherContentHash": "427ba878ebb5570e15aab870f708720d146a1c4b272e4a9d9990db4d1d033170", - "version": "0.0.39" -} + "version": "0.0.39", + "description": "TypeScript definitions for ESTree AST specification", + "license": "MIT", + "contributors": [ + { + "name": "RReverser", + "url": "https://github.com/RReverser", + "githubUsername": "RReverser" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "427ba878ebb5570e15aab870f708720d146a1c4b272e4a9d9990db4d1d033170", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" +,"_integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" +,"_from": "@types/estree@0.0.39" +} \ No newline at end of file diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index 63f6f0e..0a51289 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -1,238 +1,255 @@ { - "_from": "@types/node@*", - "_id": "@types/node@14.6.4", - "_inBundle": false, - "_integrity": "sha512-Wk7nG1JSaMfMpoMJDKUsWYugliB2Vy55pdjLpmLixeyMi7HizW2I/9QoxsPCkXl3dO+ZOVqPumKaDUv5zJu2uQ==", - "_location": "/@types/node", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@types/node@*", "name": "@types/node", - "escapedName": "@types%2fnode", - "scope": "@types", - "rawSpec": "*", - "saveSpec": null, - "fetchSpec": "*" - }, - "_requiredBy": [ - "/jest-worker" - ], - "_resolved": "https://registry.npmjs.org/@types/node/-/node-14.6.4.tgz", - "_shasum": "a145cc0bb14ef9c4777361b7bbafa5cf8e3acb5a", - "_spec": "@types/node@*", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/jest-worker", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Microsoft TypeScript", - "url": "https://github.com/Microsoft" - }, - { - "name": "DefinitelyTyped", - "url": "https://github.com/DefinitelyTyped" - }, - { - "name": "Alberto Schiabel", - "url": "https://github.com/jkomyno" - }, - { - "name": "Alexander T.", - "url": "https://github.com/a-tarasyuk" - }, - { - "name": "Alvis HT Tang", - "url": "https://github.com/alvis" - }, - { - "name": "Andrew Makarov", - "url": "https://github.com/r3nya" - }, - { - "name": "Benjamin Toueg", - "url": "https://github.com/btoueg" - }, - { - "name": "Bruno Scheufler", - "url": "https://github.com/brunoscheufler" - }, - { - "name": "Chigozirim C.", - "url": "https://github.com/smac89" - }, - { - "name": "David Junger", - "url": "https://github.com/touffy" - }, - { - "name": "Deividas Bakanas", - "url": "https://github.com/DeividasBakanas" - }, - { - "name": "Eugene Y. Q. Shen", - "url": "https://github.com/eyqs" - }, - { - "name": "Flarna", - "url": "https://github.com/Flarna" - }, - { - "name": "Hannes Magnusson", - "url": "https://github.com/Hannes-Magnusson-CK" - }, - { - "name": "Hoàng Văn Khải", - "url": "https://github.com/KSXGitHub" - }, - { - "name": "Huw", - "url": "https://github.com/hoo29" - }, - { - "name": "Kelvin Jin", - "url": "https://github.com/kjin" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff" - }, - { - "name": "Lishude", - "url": "https://github.com/islishude" - }, - { - "name": "Mariusz Wiktorczyk", - "url": "https://github.com/mwiktorczyk" - }, - { - "name": "Mohsen Azimi", - "url": "https://github.com/mohsen1" - }, - { - "name": "Nicolas Even", - "url": "https://github.com/n-e" - }, - { - "name": "Nikita Galkin", - "url": "https://github.com/galkin" - }, - { - "name": "Parambir Singh", - "url": "https://github.com/parambirs" - }, - { - "name": "Sebastian Silbermann", - "url": "https://github.com/eps1lon" - }, - { - "name": "Simon Schick", - "url": "https://github.com/SimonSchick" - }, - { - "name": "Thomas den Hollander", - "url": "https://github.com/ThomasdenH" - }, - { - "name": "Wilco Bakker", - "url": "https://github.com/WilcoBakker" - }, - { - "name": "wwwy3y3", - "url": "https://github.com/wwwy3y3" - }, - { - "name": "Samuel Ainsworth", - "url": "https://github.com/samuela" - }, - { - "name": "Kyle Uehlein", - "url": "https://github.com/kuehlein" - }, - { - "name": "Jordi Oliveras Rovira", - "url": "https://github.com/j-oliveras" - }, - { - "name": "Thanik Bhongbhibhat", - "url": "https://github.com/bhongy" - }, - { - "name": "Marcin Kopacz", - "url": "https://github.com/chyzwar" - }, - { - "name": "Trivikram Kamat", - "url": "https://github.com/trivikr" - }, - { - "name": "Minh Son Nguyen", - "url": "https://github.com/nguymin4" - }, - { - "name": "Junxiao Shi", - "url": "https://github.com/yoursunny" - }, - { - "name": "Ilia Baryshnikov", - "url": "https://github.com/qwelias" - }, - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" - }, - { - "name": "Surasak Chaisurin", - "url": "https://github.com/Ryan-Willpower" - }, - { - "name": "Piotr Błażejewicz", - "url": "https://github.com/peterblazejewicz" - }, - { - "name": "Anna Henningsen", - "url": "https://github.com/addaleax" - }, - { - "name": "Jason Kwok", - "url": "https://github.com/JasonHK" - } - ], - "dependencies": {}, - "deprecated": false, - "description": "TypeScript definitions for Node.js", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/node", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/node" - }, - "scripts": {}, - "typeScriptVersion": "3.1", - "types": "index.d.ts", - "typesPublisherContentHash": "5fc739401176088207c6f60e9d6b833ad5ae4b6a6edc1548b9665013878f8ac0", - "typesVersions": { - "<=3.1": { - "*": [ - "ts3.1/*" - ] - }, - "<=3.4": { - "*": [ - "ts3.4/*" - ] - }, - "<=3.6": { - "*": [ - "ts3.6/*" - ] - } - }, - "version": "14.6.4" -} + "version": "14.6.4", + "description": "TypeScript definitions for Node.js", + "license": "MIT", + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft", + "githubUsername": "Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped", + "githubUsername": "DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno", + "githubUsername": "jkomyno" + }, + { + "name": "Alexander T.", + "url": "https://github.com/a-tarasyuk", + "githubUsername": "a-tarasyuk" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis", + "githubUsername": "alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya", + "githubUsername": "r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg", + "githubUsername": "btoueg" + }, + { + "name": "Bruno Scheufler", + "url": "https://github.com/brunoscheufler", + "githubUsername": "brunoscheufler" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89", + "githubUsername": "smac89" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy", + "githubUsername": "touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas", + "githubUsername": "DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs", + "githubUsername": "eyqs" + }, + { + "name": "Flarna", + "url": "https://github.com/Flarna", + "githubUsername": "Flarna" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK", + "githubUsername": "Hannes-Magnusson-CK" + }, + { + "name": "Hoàng Văn Khải", + "url": "https://github.com/KSXGitHub", + "githubUsername": "KSXGitHub" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29", + "githubUsername": "hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin", + "githubUsername": "kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude", + "githubUsername": "islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk", + "githubUsername": "mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1", + "githubUsername": "mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e", + "githubUsername": "n-e" + }, + { + "name": "Nikita Galkin", + "url": "https://github.com/galkin", + "githubUsername": "galkin" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs", + "githubUsername": "parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon", + "githubUsername": "eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick", + "githubUsername": "SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH", + "githubUsername": "ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker", + "githubUsername": "WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3", + "githubUsername": "wwwy3y3" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela", + "githubUsername": "samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein", + "githubUsername": "kuehlein" + }, + { + "name": "Jordi Oliveras Rovira", + "url": "https://github.com/j-oliveras", + "githubUsername": "j-oliveras" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy", + "githubUsername": "bhongy" + }, + { + "name": "Marcin Kopacz", + "url": "https://github.com/chyzwar", + "githubUsername": "chyzwar" + }, + { + "name": "Trivikram Kamat", + "url": "https://github.com/trivikr", + "githubUsername": "trivikr" + }, + { + "name": "Minh Son Nguyen", + "url": "https://github.com/nguymin4", + "githubUsername": "nguymin4" + }, + { + "name": "Junxiao Shi", + "url": "https://github.com/yoursunny", + "githubUsername": "yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "url": "https://github.com/qwelias", + "githubUsername": "qwelias" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" + }, + { + "name": "Surasak Chaisurin", + "url": "https://github.com/Ryan-Willpower", + "githubUsername": "Ryan-Willpower" + }, + { + "name": "Piotr Błażejewicz", + "url": "https://github.com/peterblazejewicz", + "githubUsername": "peterblazejewicz" + }, + { + "name": "Anna Henningsen", + "url": "https://github.com/addaleax", + "githubUsername": "addaleax" + }, + { + "name": "Jason Kwok", + "url": "https://github.com/JasonHK", + "githubUsername": "JasonHK" + } + ], + "main": "", + "types": "index.d.ts", + "typesVersions": { + "<=3.1": { + "*": [ + "ts3.1/*" + ] + }, + "<=3.4": { + "*": [ + "ts3.4/*" + ] + }, + "<=3.6": { + "*": [ + "ts3.6/*" + ] + } + }, + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "5fc739401176088207c6f60e9d6b833ad5ae4b6a6edc1548b9665013878f8ac0", + "typeScriptVersion": "3.1" + +,"_resolved": "https://registry.npmjs.org/@types/node/-/node-14.6.4.tgz" +,"_integrity": "sha512-Wk7nG1JSaMfMpoMJDKUsWYugliB2Vy55pdjLpmLixeyMi7HizW2I/9QoxsPCkXl3dO+ZOVqPumKaDUv5zJu2uQ==" +,"_from": "@types/node@14.6.4" +} \ No newline at end of file diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json index 54d63fc..8e2972c 100644 --- a/node_modules/ansi-styles/package.json +++ b/node_modules/ansi-styles/package.json @@ -1,88 +1,60 @@ { - "_from": "ansi-styles@^3.2.1", - "_id": "ansi-styles@3.2.1", - "_inBundle": false, - "_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "_location": "/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "ansi-styles@^3.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "^3.2.1", - "saveSpec": null, - "fetchSpec": "^3.2.1" - }, - "_requiredBy": [ - "/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "_shasum": "41fbb20243e50b12be0f04b8dedbf07520ce841d", - "_spec": "ansi-styles@^3.2.1", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/chalk", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "ava": { - "require": "babel-polyfill" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-convert": "^1.9.0" - }, - "deprecated": false, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "ava": "*", - "babel-polyfill": "^6.23.0", - "svg-term-cli": "^2.1.1", - "xo": "*" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava" - }, - "version": "3.2.1" -} + "name": "ansi-styles", + "version": "3.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "color-convert": "^1.9.0" + }, + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" + }, + "ava": { + "require": "babel-polyfill" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" +,"_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" +,"_from": "ansi-styles@3.2.1" +} \ No newline at end of file diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json index 518208e..a01e0f1 100644 --- a/node_modules/buffer-from/package.json +++ b/node_modules/buffer-from/package.json @@ -1,52 +1,23 @@ { - "_from": "buffer-from@^1.0.0", - "_id": "buffer-from@1.1.1", - "_inBundle": false, - "_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "_location": "/buffer-from", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "buffer-from@^1.0.0", - "name": "buffer-from", - "escapedName": "buffer-from", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/source-map-support" + "name": "buffer-from", + "version": "1.1.1", + "license": "MIT", + "repository": "LinusU/buffer-from", + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "_shasum": "32713bc028f75c02fdb710d7c7bcec1f2c6070ef", - "_spec": "buffer-from@^1.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/source-map-support", - "bugs": { - "url": "https://github.com/LinusU/buffer-from/issues" + "scripts": { + "test": "standard && node test" }, - "bundleDependencies": false, - "deprecated": false, - "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", "devDependencies": { "standard": "^7.1.2" }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/LinusU/buffer-from#readme", "keywords": [ "buffer", "buffer from" - ], - "license": "MIT", - "name": "buffer-from", - "repository": { - "type": "git", - "url": "git+https://github.com/LinusU/buffer-from.git" - }, - "scripts": { - "test": "standard && node test" - }, - "version": "1.1.1" -} + ] + +,"_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" +,"_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" +,"_from": "buffer-from@1.1.1" +} \ No newline at end of file diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json index c0e1f26..0b96e37 100644 --- a/node_modules/chalk/package.json +++ b/node_modules/chalk/package.json @@ -1,103 +1,75 @@ { - "_from": "chalk@^2.0.0", - "_id": "chalk@2.4.2", - "_inBundle": false, - "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "_location": "/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "chalk@^2.0.0", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" - }, - "_requiredBy": [ - "/@babel/highlight" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "_shasum": "cd42541677a54333cf541a49108c1432b44c9424", - "_spec": "chalk@^2.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@babel/highlight", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "deprecated": false, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "*", - "coveralls": "^3.0.0", - "execa": "^0.9.0", - "flow-bin": "^0.68.0", - "import-fresh": "^2.0.0", - "matcha": "^0.7.0", - "nyc": "^11.0.2", - "resolve-from": "^4.0.0", - "typescript": "^2.5.3", - "xo": "*" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "templates.js", - "types/index.d.ts", - "index.js.flow" - ], - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" - }, - "types": "types/index.d.ts", - "version": "2.4.2", - "xo": { - "envs": [ - "node", - "mocha" - ], - "ignores": [ - "test/_flow.js" - ] - } -} + "name": "chalk", + "version": "2.4.2", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava", + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "index.js", + "templates.js", + "types/index.d.ts", + "index.js.flow" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, + "types": "types/index.d.ts", + "xo": { + "envs": [ + "node", + "mocha" + ], + "ignores": [ + "test/_flow.js" + ] + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" +,"_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" +,"_from": "chalk@2.4.2" +} \ No newline at end of file diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json index 2aa9aef..faaa485 100644 --- a/node_modules/color-convert/package.json +++ b/node_modules/color-convert/package.json @@ -1,51 +1,14 @@ { - "_from": "color-convert@^1.9.0", - "_id": "color-convert@1.9.3", - "_inBundle": false, - "_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "_location": "/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "color-convert@^1.9.0", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "^1.9.0", - "saveSpec": null, - "fetchSpec": "^1.9.0" - }, - "_requiredBy": [ - "/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "_shasum": "bb71850690e1f136567de629d2d5471deda4c1e8", - "_spec": "color-convert@^1.9.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/ansi-styles", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "1.1.3" - }, - "deprecated": false, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "1.1.1", - "xo": "0.11.2" + "version": "1.9.3", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, - "files": [ - "index.js", - "conversions.js", - "css-keywords.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -60,22 +23,28 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "1.9.3", + "files": [ + "index.js", + "conversions.js", + "css-keywords.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "1.1.1", + "xo": "0.11.2" + }, + "dependencies": { + "color-name": "1.1.3" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" +,"_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" +,"_from": "color-convert@1.9.3" +} \ No newline at end of file diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json index 46f3fe8..0afa485 100644 --- a/node_modules/color-name/package.json +++ b/node_modules/color-name/package.json @@ -1,53 +1,29 @@ { - "_from": "color-name@1.1.3", - "_id": "color-name@1.1.3", - "_inBundle": false, - "_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "_location": "/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.3", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.3", - "saveSpec": null, - "fetchSpec": "1.1.3" - }, - "_requiredBy": [ - "/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "_shasum": "a7d0558bd89c42f795dd42328f740831ca53bc25", - "_spec": "color-name@1.1.3", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/color-convert", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" + "name": "color-name", + "version": "1.1.3", + "description": "A list of color names and its values", + "main": "index.js", + "scripts": { + "test": "node test.js" }, - "bugs": { - "url": "https://github.com/dfcreative/color-name/issues" + "repository": { + "type": "git", + "url": "git@github.com:dfcreative/color-name.git" }, - "bundleDependencies": false, - "deprecated": false, - "description": "A list of color names and its values", - "homepage": "https://github.com/dfcreative/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], + "author": "DY ", "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/dfcreative/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/dfcreative/color-name/issues" }, - "version": "1.1.3" -} + "homepage": "https://github.com/dfcreative/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" +,"_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" +,"_from": "color-name@1.1.3" +} \ No newline at end of file diff --git a/node_modules/commander/package.json b/node_modules/commander/package.json index 9a673e7..4c42e53 100644 --- a/node_modules/commander/package.json +++ b/node_modules/commander/package.json @@ -1,70 +1,42 @@ { - "_from": "commander@^2.20.0", - "_id": "commander@2.20.3", - "_inBundle": false, - "_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "_location": "/commander", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "commander@^2.20.0", - "name": "commander", - "escapedName": "commander", - "rawSpec": "^2.20.0", - "saveSpec": null, - "fetchSpec": "^2.20.0" - }, - "_requiredBy": [ - "/terser" - ], - "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "_shasum": "fd485e84c03eb4881c20722ba48035e8531aeb33", - "_spec": "commander@^2.20.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/terser", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "bugs": { - "url": "https://github.com/tj/commander.js/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "commander", + "version": "2.20.3", "description": "the complete solution for node.js command-line programs", - "devDependencies": { - "@types/node": "^12.7.8", - "eslint": "^6.4.0", - "should": "^13.2.3", - "sinon": "^7.5.0", - "standard": "^14.3.1", - "ts-node": "^8.4.1", - "typescript": "^3.6.3" - }, - "files": [ - "index.js", - "typings/index.d.ts" - ], - "homepage": "https://github.com/tj/commander.js#readme", "keywords": [ "commander", "command", "option", "parser" ], + "author": "TJ Holowaychuk ", "license": "MIT", - "main": "index", - "name": "commander", "repository": { "type": "git", - "url": "git+https://github.com/tj/commander.js.git" + "url": "https://github.com/tj/commander.js.git" }, "scripts": { "lint": "eslint index.js", "test": "node test/run.js && npm run test-typings", "test-typings": "tsc -p tsconfig.json" }, - "typings": "typings/index.d.ts", - "version": "2.20.3" -} + "main": "index", + "files": [ + "index.js", + "typings/index.d.ts" + ], + "dependencies": {}, + "devDependencies": { + "@types/node": "^12.7.8", + "eslint": "^6.4.0", + "should": "^13.2.3", + "sinon": "^7.5.0", + "standard": "^14.3.1", + "ts-node": "^8.4.1", + "typescript": "^3.6.3" + }, + "typings": "typings/index.d.ts" + +,"_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" +,"_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" +,"_from": "commander@2.20.3" +} \ No newline at end of file diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json index 325ce4c..8b63190 100644 --- a/node_modules/escape-string-regexp/package.json +++ b/node_modules/escape-string-regexp/package.json @@ -1,49 +1,27 @@ { - "_from": "escape-string-regexp@^1.0.5", - "_id": "escape-string-regexp@1.0.5", - "_inBundle": false, - "_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "_location": "/escape-string-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "escape-string-regexp@^1.0.5", - "name": "escape-string-regexp", - "escapedName": "escape-string-regexp", - "rawSpec": "^1.0.5", - "saveSpec": null, - "fetchSpec": "^1.0.5" - }, - "_requiredBy": [ - "/chalk" - ], - "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "_shasum": "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4", - "_spec": "escape-string-regexp@^1.0.5", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/chalk", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -56,26 +34,12 @@ "special", "characters" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Boy Nicolai Appelman", - "email": "joshua@jbna.nl", - "url": "jbna.nl" - } - ], - "name": "escape-string-regexp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.5" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" +,"_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" +,"_from": "escape-string-regexp@1.0.5" +} \ No newline at end of file diff --git a/node_modules/fsevents/LICENSE b/node_modules/fsevents/LICENSE new file mode 100644 index 0000000..5d70441 --- /dev/null +++ b/node_modules/fsevents/LICENSE @@ -0,0 +1,22 @@ +MIT License +----------- + +Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/fsevents/README.md b/node_modules/fsevents/README.md new file mode 100644 index 0000000..afa1d30 --- /dev/null +++ b/node_modules/fsevents/README.md @@ -0,0 +1,77 @@ +# fsevents [![NPM](https://nodei.co/npm/fsevents.png)](https://nodei.co/npm/fsevents/) + +Native access to MacOS FSEvents in [Node.js](https://nodejs.org/) + +The FSEvents API in MacOS allows applications to register for notifications of +changes to a given directory tree. It is a very fast and lightweight alternative +to kqueue. + +This is a low-level library. For a cross-platform file watching module that +uses fsevents, check out [Chokidar](https://github.com/paulmillr/chokidar). + +## Installation + +Supports only **Node.js v8.16 and higher**. + +```sh +npm install fsevents +``` + +## Usage + +```js +const fsevents = require('fsevents'); +const stop = fsevents.watch(__dirname, (path, flags, id) => { + const info = fsevents.getInfo(path, flags, id); +}); // To start observation +stop(); // To end observation +``` + +The callback passed as the second parameter to `.watch` get's called whenever the operating system detects a +a change in the file system. It takes three arguments: + +###### `fsevents.watch(dirname: string, (path: string, flags: number, id: string) => void): () => Promise` + + * `path: string` - the item in the filesystem that have been changed + * `flags: number` - a numeric value describing what the change was + * `id: string` - an unique-id identifying this specific event + + Returns closer callback which when called returns a Promise resolving when the watcher process has been shut down. + +###### `fsevents.getInfo(path: string, flags: number, id: string): FsEventInfo` + +The `getInfo` function takes the `path`, `flags` and `id` arguments and converts those parameters into a structure +that is easier to digest to determine what the change was. + +The `FsEventsInfo` has the following shape: + +```js +/** + * @typedef {'created'|'modified'|'deleted'|'moved'|'root-changed'|'cloned'|'unknown'} FsEventsEvent + * @typedef {'file'|'directory'|'symlink'} FsEventsType + */ +{ + "event": "created", // {FsEventsEvent} + "path": "file.txt", + "type": "file", // {FsEventsType} + "changes": { + "inode": true, // Had iNode Meta-Information changed + "finder": false, // Had Finder Meta-Data changed + "access": false, // Had access permissions changed + "xattrs": false // Had xAttributes changed + }, + "flags": 0x100000000 +} +``` + +## Engine compatibility + +- v2 supports node 8.16+ +- v1.2.8 supports node 6+ +- v1.2.7 supports node 4+ + +## License + +The MIT License Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller — see LICENSE file. + +Visit our [GitHub page](https://github.com/fsevents/fsevents) and [NPM Page](https://npmjs.org/package/fsevents) diff --git a/node_modules/fsevents/fsevents.d.ts b/node_modules/fsevents/fsevents.d.ts new file mode 100644 index 0000000..adbb28d --- /dev/null +++ b/node_modules/fsevents/fsevents.d.ts @@ -0,0 +1,55 @@ +declare type Event = + | 'created' + | 'cloned' + | 'modified' + | 'deleted' + | 'moved' + | 'root-changed' + | 'unknown'; +declare type Type = 'file' | 'directory' | 'symlink'; +declare type FileChanges = { + inode: boolean; + finder: boolean; + access: boolean; + xattrs: boolean; +}; +declare type Info = { + event: Event; + path: string; + type: Type; + changes: FileChanges; + flags: number; +}; +declare type WatchHandler = (path: string, flags: number, id: string) => void; +export declare function watch( + path: string, + handler: WatchHandler, +): () => Promise; +export declare function getInfo(path: string, flags: number): Info; +export declare const constants: { + None: 0x00000000; + MustScanSubDirs: 0x00000001; + UserDropped: 0x00000002; + KernelDropped: 0x00000004; + EventIdsWrapped: 0x00000008; + HistoryDone: 0x00000010; + RootChanged: 0x00000020; + Mount: 0x00000040; + Unmount: 0x00000080; + ItemCreated: 0x00000100; + ItemRemoved: 0x00000200; + ItemInodeMetaMod: 0x00000400; + ItemRenamed: 0x00000800; + ItemModified: 0x00001000; + ItemFinderInfoMod: 0x00002000; + ItemChangeOwner: 0x00004000; + ItemXattrMod: 0x00008000; + ItemIsFile: 0x00010000; + ItemIsDir: 0x00020000; + ItemIsSymlink: 0x00040000; + ItemIsHardlink: 0x00100000; + ItemIsLastHardlink: 0x00200000; + OwnEvent: 0x00080000; + ItemCloned: 0x00400000; +}; +export {} diff --git a/node_modules/fsevents/fsevents.js b/node_modules/fsevents/fsevents.js new file mode 100644 index 0000000..8dae5d5 --- /dev/null +++ b/node_modules/fsevents/fsevents.js @@ -0,0 +1,77 @@ +/* + ** © 2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller + ** Licensed under MIT License. + */ + +/* jshint node:true */ +'use strict'; + +if (process.platform !== 'darwin') { + throw new Error(`Module 'fsevents' is not compatible with platform '${process.platform}'`); +} + +const Native = require('./fsevents.node'); +const events = Native.constants; + +function watch(path, handler) { + if (typeof path !== 'string') { + throw new TypeError(`fsevents argument 1 must be a string and not a ${typeof path}`); + } + if (typeof handler !== 'function') { + throw new TypeError(`fsevents argument 2 must be a function and not a ${typeof handler}`); + } + + let instance = Native.start(path, handler); + if (!instance) throw new Error(`could not watch: ${path}`); + return () => { + const result = instance + ? Promise.resolve(instance).then(Native.stop) + : Promise.resolve(undefined); + instance = undefined; + return result; + }; +} + +function getInfo(path, flags) { + return { + path, + flags, + event: getEventType(flags), + type: getFileType(flags), + changes: getFileChanges(flags) + }; +} + +function getFileType(flags) { + if (events.ItemIsFile & flags) return 'file'; + if (events.ItemIsDir & flags) return 'directory'; + if (events.ItemIsSymlink & flags) return 'symlink'; +} +function anyIsTrue(obj) { + for (let key in obj) { + if (obj[key]) return true; + } + return false; +} +function getEventType(flags) { + if (events.ItemRemoved & flags) return 'deleted'; + if (events.ItemRenamed & flags) return 'moved'; + if (events.ItemCreated & flags) return 'created'; + if (events.ItemModified & flags) return 'modified'; + if (events.RootChanged & flags) return 'root-changed'; + if (events.ItemCloned & flags) return 'cloned'; + if (anyIsTrue(flags)) return 'modified'; + return 'unknown'; +} +function getFileChanges(flags) { + return { + inode: !!(events.ItemInodeMetaMod & flags), + finder: !!(events.ItemFinderInfoMod & flags), + access: !!(events.ItemChangeOwner & flags), + xattrs: !!(events.ItemXattrMod & flags) + }; +} + +exports.watch = watch; +exports.getInfo = getInfo; +exports.constants = events; diff --git a/node_modules/fsevents/fsevents.node b/node_modules/fsevents/fsevents.node new file mode 100755 index 0000000000000000000000000000000000000000..8d952b5d084a21166c29de6e90ad6c954f861594 GIT binary patch literal 36204 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 literal 0 HcmV?d00001 diff --git a/node_modules/fsevents/package.json b/node_modules/fsevents/package.json new file mode 100644 index 0000000..f6bbc95 --- /dev/null +++ b/node_modules/fsevents/package.json @@ -0,0 +1,66 @@ +{ + "name": "fsevents", + "version": "2.1.3", + "description": "Native Access to MacOS FSEvents", + "main": "fsevents.js", + "types": "fsevents.d.ts", + "os": [ + "darwin" + ], + "files": [ + "fsevents.d.ts", + "fsevents.js", + "fsevents.node" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + }, + "scripts": { + "clean": "node-gyp clean && rm -f fsevents.node", + "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean", + "test": "/bin/bash ./test.sh 2>/dev/null", + "prepublishOnly": "npm run build" + }, + "repository": { + "type": "git", + "url": "https://github.com/fsevents/fsevents.git" + }, + "keywords": [ + "fsevents", + "mac" + ], + "contributors": [ + { + "name": "Philipp Dunkel", + "email": "pip@pipobscure.com" + }, + { + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl" + }, + { + "name": "Elan Shankar", + "email": "elan.shanker@gmail.com" + }, + { + "name": "Miroslav Bajtoš", + "email": "mbajtoss@gmail.com" + }, + { + "name": "Paul Miller", + "url": "https://paulmillr.com" + } + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/fsevents/fsevents/issues" + }, + "homepage": "https://github.com/fsevents/fsevents", + "devDependencies": { + "node-gyp": "^6.1.0" + } + +,"_resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz" +,"_integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" +,"_from": "fsevents@2.1.3" +} \ No newline at end of file diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json index 7355eea..b07fbde 100644 --- a/node_modules/has-flag/package.json +++ b/node_modules/has-flag/package.json @@ -1,49 +1,23 @@ { - "_from": "has-flag@^3.0.0", - "_id": "has-flag@3.0.0", - "_inBundle": false, - "_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "_location": "/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-flag@^3.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "^3.0.0", - "saveSpec": null, - "fetchSpec": "^3.0.0" - }, - "_requiredBy": [ - "/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "_shasum": "b5d454dc2199ae225699f3467e5a07f3b955bafd", - "_spec": "has-flag@^3.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/supports-color", + "name": "has-flag", + "version": "3.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -63,14 +37,12 @@ "minimist", "optimist" ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" +,"_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" +,"_from": "has-flag@3.0.0" +} \ No newline at end of file diff --git a/node_modules/jest-worker/node_modules/has-flag/package.json b/node_modules/jest-worker/node_modules/has-flag/package.json index 9d6f232..5b10a28 100644 --- a/node_modules/jest-worker/node_modules/has-flag/package.json +++ b/node_modules/jest-worker/node_modules/has-flag/package.json @@ -1,78 +1,50 @@ { - "_from": "has-flag@^4.0.0", - "_id": "has-flag@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "_location": "/jest-worker/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "has-flag@^4.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/jest-worker/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "_shasum": "944771fd9c81c81265c4d6941860da06bb59479b", - "_spec": "has-flag@^4.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/jest-worker/node_modules/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" +,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" +,"_from": "has-flag@4.0.0" +} \ No newline at end of file diff --git a/node_modules/jest-worker/node_modules/supports-color/package.json b/node_modules/jest-worker/node_modules/supports-color/package.json index a6f1da8..14362ab 100644 --- a/node_modules/jest-worker/node_modules/supports-color/package.json +++ b/node_modules/jest-worker/node_modules/supports-color/package.json @@ -1,85 +1,57 @@ { - "_from": "supports-color@^7.0.0", - "_id": "supports-color@7.2.0", - "_inBundle": false, - "_integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "_location": "/jest-worker/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "supports-color@^7.0.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "^7.0.0", - "saveSpec": null, - "fetchSpec": "^7.0.0" - }, - "_requiredBy": [ - "/jest-worker" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "_shasum": "1b7dcdcb32b8138801b3e478ba6a51caa89648da", - "_spec": "supports-color@^7.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/jest-worker", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "7.2.0" -} + "name": "supports-color", + "version": "7.2.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" +,"_integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" +,"_from": "supports-color@7.2.0" +} \ No newline at end of file diff --git a/node_modules/jest-worker/package.json b/node_modules/jest-worker/package.json index 04fa51e..3513196 100644 --- a/node_modules/jest-worker/package.json +++ b/node_modules/jest-worker/package.json @@ -1,38 +1,19 @@ { - "_from": "jest-worker@^26.2.1", - "_id": "jest-worker@26.3.0", - "_inBundle": false, - "_integrity": "sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw==", - "_location": "/jest-worker", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "jest-worker@^26.2.1", - "name": "jest-worker", - "escapedName": "jest-worker", - "rawSpec": "^26.2.1", - "saveSpec": null, - "fetchSpec": "^26.2.1" - }, - "_requiredBy": [ - "/rollup-plugin-terser" - ], - "_resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.3.0.tgz", - "_shasum": "7c8a97e4f4364b4f05ed8bca8ca0c24de091871f", - "_spec": "jest-worker@^26.2.1", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/rollup-plugin-terser", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-worker", + "version": "26.3.0", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-worker" }, - "bundleDependencies": false, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^7.0.0" }, - "deprecated": false, - "description": "Module for executing heavy tasks under forked processes in parallel, by providing a `Promise` based interface, minimum overhead, and bound workers.", "devDependencies": { "@types/merge-stream": "^1.1.2", "@types/supports-color": "^5.3.0", @@ -42,19 +23,12 @@ "engines": { "node": ">= 10.13.0" }, - "gitHead": "3a7e06fe855515a848241bb06a6f6e117847443d", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-worker", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-worker" - }, - "types": "build/index.d.ts", - "version": "26.3.0" -} + "gitHead": "3a7e06fe855515a848241bb06a6f6e117847443d" + +,"_resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.3.0.tgz" +,"_integrity": "sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw==" +,"_from": "jest-worker@26.3.0" +} \ No newline at end of file diff --git a/node_modules/js-tokens/package.json b/node_modules/js-tokens/package.json index 074e7ca..368221c 100644 --- a/node_modules/js-tokens/package.json +++ b/node_modules/js-tokens/package.json @@ -1,46 +1,9 @@ { - "_from": "js-tokens@^4.0.0", - "_id": "js-tokens@4.0.0", - "_inBundle": false, - "_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "_location": "/js-tokens", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "js-tokens@^4.0.0", - "name": "js-tokens", - "escapedName": "js-tokens", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/@babel/highlight" - ], - "_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "_shasum": "19203fb59991df98e3a287050d4647cdeaf32499", - "_spec": "js-tokens@^4.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@babel/highlight", - "author": { - "name": "Simon Lydell" - }, - "bugs": { - "url": "https://github.com/lydell/js-tokens/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "js-tokens", + "version": "4.0.0", + "author": "Simon Lydell", + "license": "MIT", "description": "A regex that tokenizes JavaScript.", - "devDependencies": { - "coffeescript": "2.1.1", - "esprima": "4.0.0", - "everything.js": "1.0.3", - "mocha": "5.0.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/lydell/js-tokens#readme", "keywords": [ "JavaScript", "js", @@ -48,17 +11,24 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "4.0.0" -} + "devDependencies": { + "coffeescript": "2.1.1", + "esprima": "4.0.0", + "everything.js": "1.0.3", + "mocha": "5.0.0" + } + +,"_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" +,"_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" +,"_from": "js-tokens@4.0.0" +} \ No newline at end of file diff --git a/node_modules/merge-stream/package.json b/node_modules/merge-stream/package.json index cd42dba..a646cc7 100644 --- a/node_modules/merge-stream/package.json +++ b/node_modules/merge-stream/package.json @@ -1,54 +1,23 @@ { - "_from": "merge-stream@^2.0.0", - "_id": "merge-stream@2.0.0", - "_inBundle": false, - "_integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "_location": "/merge-stream", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "merge-stream@^2.0.0", - "name": "merge-stream", - "escapedName": "merge-stream", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" - }, - "_requiredBy": [ - "/jest-worker" - ], - "_resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "_shasum": "52823629a14dd00c9770fb6ad47dc6310f2c1f60", - "_spec": "merge-stream@^2.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/jest-worker", - "author": { - "name": "Stephen Sugden", - "email": "me@stephensugden.com" - }, - "bugs": { - "url": "https://github.com/grncdr/merge-stream/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "merge-stream", + "version": "2.0.0", "description": "Create a stream that emits events from multiple other streams", - "devDependencies": { - "from2": "^2.0.3", - "istanbul": "^0.4.5" - }, "files": [ "index.js" ], - "homepage": "https://github.com/grncdr/merge-stream#readme", - "license": "MIT", - "name": "merge-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/grncdr/merge-stream.git" - }, "scripts": { "test": "istanbul cover test.js && istanbul check-cover --statements 100 --branches 100" }, - "version": "2.0.0" -} + "repository": "grncdr/merge-stream", + "author": "Stephen Sugden ", + "license": "MIT", + "dependencies": {}, + "devDependencies": { + "from2": "^2.0.3", + "istanbul": "^0.4.5" + } + +,"_resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" +,"_integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" +,"_from": "merge-stream@2.0.0" +} \ No newline at end of file diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 3cb8893..4353f3b 100755 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,37 +1,30 @@ { - "_from": "picomatch@^2.2.2", - "_id": "picomatch@2.2.2", - "_inBundle": false, - "_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "_location": "/picomatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "picomatch@^2.2.2", - "name": "picomatch", - "escapedName": "picomatch", - "rawSpec": "^2.2.2", - "saveSpec": null, - "fetchSpec": "^2.2.2" + "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.2.2", + "homepage": "https://github.com/micromatch/picomatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "funding": "https://github.com/sponsors/jonschlinkert", + "repository": "micromatch/picomatch", + "bugs": { + "url": "https://github.com/micromatch/picomatch/issues" }, - "_requiredBy": [ - "/@rollup/pluginutils" + "license": "MIT", + "files": [ + "index.js", + "lib" ], - "_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "_shasum": "21f333e9b6b8eaff02468f5146ea406d345f4dad", - "_spec": "picomatch@^2.2.2", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/@rollup/pluginutils", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" + "main": "index.js", + "engines": { + "node": ">=8.6" }, - "bugs": { - "url": "https://github.com/micromatch/picomatch/issues" + "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" }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -40,23 +33,11 @@ "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", @@ -64,17 +45,6 @@ "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, @@ -107,6 +77,9 @@ "nanomatch", "picomatch" ] - }, - "version": "2.2.2" -} + } + +,"_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" +,"_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" +,"_from": "picomatch@2.2.2" +} \ No newline at end of file diff --git a/node_modules/randombytes/package.json b/node_modules/randombytes/package.json index 6055787..33d9730 100644 --- a/node_modules/randombytes/package.json +++ b/node_modules/randombytes/package.json @@ -1,38 +1,28 @@ { - "_from": "randombytes@^2.1.0", - "_id": "randombytes@2.1.0", - "_inBundle": false, - "_integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "_location": "/randombytes", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "randombytes@^2.1.0", - "name": "randombytes", - "escapedName": "randombytes", - "rawSpec": "^2.1.0", - "saveSpec": null, - "fetchSpec": "^2.1.0" + "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" }, - "_requiredBy": [ - "/serialize-javascript" + "repository": { + "type": "git", + "url": "git@github.com:crypto-browserify/randombytes.git" + }, + "keywords": [ + "crypto", + "random" ], - "_resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "_shasum": "df6f84372f0270dc65cdf6291349ab7a473d4f2a", - "_spec": "randombytes@^2.1.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/serialize-javascript", "author": "", - "browser": "browser.js", + "license": "MIT", "bugs": { "url": "https://github.com/crypto-browserify/randombytes/issues" }, - "bundleDependencies": false, - "dependencies": { - "safe-buffer": "^5.1.0" - }, - "deprecated": false, - "description": "random bytes from browserify stand alone", + "homepage": "https://github.com/crypto-browserify/randombytes", + "browser": "browser.js", "devDependencies": { "phantomjs": "^1.9.9", "standard": "^10.0.2", @@ -40,22 +30,11 @@ "tape": "^4.6.3", "zuul": "^3.7.2" }, - "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" -} + "dependencies": { + "safe-buffer": "^5.1.0" + } + +,"_resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" +,"_integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" +,"_from": "randombytes@2.1.0" +} \ No newline at end of file diff --git a/node_modules/rollup-plugin-terser/package.json b/node_modules/rollup-plugin-terser/package.json index baa9344..234df19 100644 --- a/node_modules/rollup-plugin-terser/package.json +++ b/node_modules/rollup-plugin-terser/package.json @@ -1,50 +1,10 @@ { - "_from": "rollup-plugin-terser", - "_id": "rollup-plugin-terser@7.0.2", - "_inBundle": false, - "_integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "_location": "/rollup-plugin-terser", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "rollup-plugin-terser", - "name": "rollup-plugin-terser", - "escapedName": "rollup-plugin-terser", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "_shasum": "e8fbba4869981b2dc35ae7e8a502d5c6c04d324d", - "_spec": "rollup-plugin-terser", - "_where": "/home/saehrimnir/Projects/datasets", - "author": { - "name": "Bogdan Chadkin", - "email": "trysound@yandex.ru" - }, - "bugs": { - "url": "https://github.com/TrySound/rollup-plugin-terser/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" - }, - "deprecated": false, + "name": "rollup-plugin-terser", + "version": "7.0.2", "description": "Rollup plugin to minify generated es bundle", - "devDependencies": { - "@babel/core": "^7.11.1", - "jest": "^26.2.2", - "prettier": "^2.0.5", - "rollup": "^2.23.1" - }, + "type": "commonjs", + "main": "rollup-plugin-terser.js", + "types": "rollup-plugin-terser.d.ts", "exports": { "require": "./rollup-plugin-terser.js", "import": "./rollup-plugin-terser.mjs" @@ -55,28 +15,39 @@ "rollup-plugin-terser.d.ts", "transform.js" ], - "homepage": "https://github.com/TrySound/rollup-plugin-terser#readme", + "scripts": { + "test": "jest", + "prepublish": "yarn test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/TrySound/rollup-plugin-terser.git" + }, "keywords": [ "rollup", "rollup-plugin", "terser", "minify" ], + "author": "Bogdan Chadkin ", "license": "MIT", - "main": "rollup-plugin-terser.js", - "name": "rollup-plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, "peerDependencies": { "rollup": "^2.0.0" }, - "repository": { - "type": "git", - "url": "git+https://github.com/TrySound/rollup-plugin-terser.git" - }, - "scripts": { - "prepublish": "yarn test", - "test": "jest" - }, - "type": "commonjs", - "types": "rollup-plugin-terser.d.ts", - "version": "7.0.2" -} + "devDependencies": { + "@babel/core": "^7.11.1", + "jest": "^26.2.2", + "prettier": "^2.0.5", + "rollup": "^2.23.1" + } + +,"_resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz" +,"_integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==" +,"_from": "rollup-plugin-terser@7.0.2" +} \ No newline at end of file diff --git a/node_modules/rollup/package.json b/node_modules/rollup/package.json index d325006..073c272 100644 --- a/node_modules/rollup/package.json +++ b/node_modules/rollup/package.json @@ -1,43 +1,68 @@ { - "_from": "rollup", - "_id": "rollup@2.26.10", - "_inBundle": false, - "_integrity": "sha512-dUnjCWOA0h9qNX6qtcHidyatz8FAFZxVxt1dbcGtKdlJkpSxGK3G9+DLCYvtZr9v94D129ij9zUhG+xbRoqepw==", - "_location": "/rollup", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "rollup", - "name": "rollup", - "escapedName": "rollup", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmjs.org/rollup/-/rollup-2.26.10.tgz", - "_shasum": "0ffe0390d35f07af850382f22f1b8525c7f57f07", - "_spec": "rollup", - "_where": "/home/saehrimnir/Projects/datasets", - "author": { - "name": "Rich Harris" - }, + "name": "rollup", + "version": "2.26.10", + "description": "Next-generation ES module bundler", + "main": "dist/rollup.js", + "module": "dist/es/rollup.js", + "typings": "dist/rollup.d.ts", "bin": { - "rollup": "dist/bin/rollup" + "rollup": "./dist/bin/rollup" }, + "scripts": { + "build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", + "build:test": "shx rm -rf dist && rollup -c --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", + "build:bootstrap": "dist/bin/rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", + "ci:lint": "npm run lint:nofix", + "ci:test": "npm run build:test && npm run build:bootstrap && npm run test:all", + "ci:test:only": "npm run build:test && npm run build:bootstrap && npm run test:only", + "ci:coverage": "npm run build:test && nyc --reporter lcovonly mocha && codecov", + "lint": "npm run lint:ts -- --fix && npm run lint:js -- --fix && npm run lint:markdown", + "lint:nofix": "npm run lint:ts && npm run lint:js && npm run lint:markdown", + "lint:ts": "tslint --project .", + "lint:js": "eslint test/test.js test/*/index.js test/utils.js test/**/_config.js", + "lint:markdown": "markdownlint --config markdownlint.json docs/**/*.md", + "perf": "npm run build:test && node --expose-gc scripts/perf.js", + "perf:debug": "node --inspect-brk scripts/perf-debug.js", + "perf:init": "node scripts/perf-init.js", + "prepare": "npm run build", + "prepublishOnly": "npm ci && npm run lint:nofix && npm run security && npm run build:bootstrap && npm run test:all", + "pretest": "npm run build:test", + "pretest:coverage": "npm run build:test && shx rm -rf coverage/*", + "pretest:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/", + "security": "# npm audit # deactivated until there is a solution for the lodash issue", + "test": "npm run test:all", + "test:all": "npm run test:only && npm run test:typescript && npm run test:leak && npm run test:package", + "test:coverage": "nyc --reporter html mocha", + "test:leak": "cross-os test:leak:os", + "test:package": "node scripts/test-package.js", + "test:leak:os": { + "darwin": "npm run test:leak:nix", + "linux": "npm run test:leak:nix", + "win32": "echo 'Skipping test:leak on Windows'" + }, + "test:leak:nix": "npm i --silent --no-save weak@1 && node --expose-gc test/leak/index.js", + "test:only": "mocha", + "test:quick": "mocha -b", + "test:typescript": "tsc --noEmit -p test/typescript && tsc --noEmit", + "watch": "rollup -cw" + }, + "repository": "rollup/rollup", + "keywords": [ + "modules", + "bundler", + "bundling", + "es6", + "optimizer" + ], + "author": "Rich Harris", + "license": "MIT", "bugs": { "url": "https://github.com/rollup/rollup/issues" }, - "bundleDependencies": false, - "dependencies": { + "homepage": "https://rollupjs.org/", + "optionalDependencies": { "fsevents": "~2.1.2" }, - "deprecated": false, - "description": "Next-generation ES module bundler", "devDependencies": { "@rollup/plugin-alias": "^3.1.1", "@rollup/plugin-buble": "^0.21.3", @@ -106,6 +131,11 @@ "url-parse": "^1.4.7", "yargs-parser": "^19.0.1" }, + "files": [ + "dist/**/*.js", + "dist/*.d.ts", + "dist/bin/rollup" + ], "engines": { "node": ">=10.0.0" }, @@ -118,64 +148,9 @@ "default": "./dist/es/rollup.browser.js" }, "./dist/": "./dist/" - }, - "files": [ - "dist/**/*.js", - "dist/*.d.ts", - "dist/bin/rollup" - ], - "homepage": "https://rollupjs.org/", - "keywords": [ - "modules", - "bundler", - "bundling", - "es6", - "optimizer" - ], - "license": "MIT", - "main": "dist/rollup.js", - "module": "dist/es/rollup.js", - "name": "rollup", - "optionalDependencies": { - "fsevents": "~2.1.2" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/rollup/rollup.git" - }, - "scripts": { - "build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", - "build:bootstrap": "dist/bin/rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", - "build:test": "shx rm -rf dist && rollup -c --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup", - "ci:coverage": "npm run build:test && nyc --reporter lcovonly mocha && codecov", - "ci:lint": "npm run lint:nofix", - "ci:test": "npm run build:test && npm run build:bootstrap && npm run test:all", - "ci:test:only": "npm run build:test && npm run build:bootstrap && npm run test:only", - "lint": "npm run lint:ts -- --fix && npm run lint:js -- --fix && npm run lint:markdown", - "lint:js": "eslint test/test.js test/*/index.js test/utils.js test/**/_config.js", - "lint:markdown": "markdownlint --config markdownlint.json docs/**/*.md", - "lint:nofix": "npm run lint:ts && npm run lint:js && npm run lint:markdown", - "lint:ts": "tslint --project .", - "perf": "npm run build:test && node --expose-gc scripts/perf.js", - "perf:debug": "node --inspect-brk scripts/perf-debug.js", - "perf:init": "node scripts/perf-init.js", - "prepare": "npm run build", - "prepublishOnly": "npm ci && npm run lint:nofix && npm run security && npm run build:bootstrap && npm run test:all", - "pretest": "npm run build:test", - "pretest:coverage": "npm run build:test && shx rm -rf coverage/*", - "pretest:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/", - "security": "# npm audit # deactivated until there is a solution for the lodash issue", - "test": "npm run test:all", - "test:all": "npm run test:only && npm run test:typescript && npm run test:leak && npm run test:package", - "test:coverage": "nyc --reporter html mocha", - "test:leak": "cross-os test:leak:os", - "test:leak:nix": "npm i --silent --no-save weak@1 && node --expose-gc test/leak/index.js", - "test:only": "mocha", - "test:package": "node scripts/test-package.js", - "test:quick": "mocha -b", - "test:typescript": "tsc --noEmit -p test/typescript && tsc --noEmit", - "watch": "rollup -cw" - }, - "typings": "dist/rollup.d.ts", - "version": "2.26.10" -} + } + +,"_resolved": "https://registry.npmjs.org/rollup/-/rollup-2.26.10.tgz" +,"_integrity": "sha512-dUnjCWOA0h9qNX6qtcHidyatz8FAFZxVxt1dbcGtKdlJkpSxGK3G9+DLCYvtZr9v94D129ij9zUhG+xbRoqepw==" +,"_from": "rollup@2.26.10" +} \ No newline at end of file diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json index 0954491..cea58cc 100644 --- a/node_modules/safe-buffer/package.json +++ b/node_modules/safe-buffer/package.json @@ -1,27 +1,7 @@ { - "_from": "safe-buffer@^5.1.0", - "_id": "safe-buffer@5.2.1", - "_inBundle": false, - "_integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "_location": "/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "safe-buffer@^5.1.0", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "^5.1.0", - "saveSpec": null, - "fetchSpec": "^5.1.0" - }, - "_requiredBy": [ - "/randombytes" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "_shasum": "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6", - "_spec": "safe-buffer@^5.1.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/randombytes", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.2.1", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -30,27 +10,10 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^5.0.0" }, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "homepage": "https://github.com/feross/safe-buffer", "keywords": [ "buffer", @@ -63,7 +26,7 @@ ], "license": "MIT", "main": "index.js", - "name": "safe-buffer", + "types": "index.d.ts", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" @@ -71,6 +34,22 @@ "scripts": { "test": "standard && tape test/*.js" }, - "types": "index.d.ts", - "version": "5.2.1" -} + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + +,"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" +,"_integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" +,"_from": "safe-buffer@5.2.1" +} \ No newline at end of file diff --git a/node_modules/serialize-javascript/package.json b/node_modules/serialize-javascript/package.json index a6308df..26f8792 100644 --- a/node_modules/serialize-javascript/package.json +++ b/node_modules/serialize-javascript/package.json @@ -1,47 +1,16 @@ { - "_from": "serialize-javascript@^4.0.0", - "_id": "serialize-javascript@4.0.0", - "_inBundle": false, - "_integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "_location": "/serialize-javascript", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "serialize-javascript@^4.0.0", - "name": "serialize-javascript", - "escapedName": "serialize-javascript", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/rollup-plugin-terser" - ], - "_resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "_shasum": "b525e1238489a5ecfc42afacc3fe99e666f4b1aa", - "_spec": "serialize-javascript@^4.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/rollup-plugin-terser", - "author": { - "name": "Eric Ferraiuolo", - "email": "edf@ericf.me" - }, - "bugs": { - "url": "https://github.com/yahoo/serialize-javascript/issues" - }, - "bundleDependencies": false, - "dependencies": { - "randombytes": "^2.1.0" - }, - "deprecated": false, + "name": "serialize-javascript", + "version": "4.0.0", "description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.", - "devDependencies": { - "benchmark": "^2.1.4", - "chai": "^4.1.0", - "mocha": "^7.0.0", - "nyc": "^15.0.0" + "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" }, - "homepage": "https://github.com/yahoo/serialize-javascript", "keywords": [ "serialize", "serialization", @@ -49,16 +18,23 @@ "js", "json" ], + "author": "Eric Ferraiuolo ", "license": "BSD-3-Clause", - "main": "index.js", - "name": "serialize-javascript", - "repository": { - "type": "git", - "url": "git+https://github.com/yahoo/serialize-javascript.git" + "bugs": { + "url": "https://github.com/yahoo/serialize-javascript/issues" }, - "scripts": { - "benchmark": "node -v && node test/benchmark/serialize.js", - "test": "nyc --reporter=lcov mocha test/unit" + "homepage": "https://github.com/yahoo/serialize-javascript", + "devDependencies": { + "benchmark": "^2.1.4", + "chai": "^4.1.0", + "mocha": "^7.0.0", + "nyc": "^15.0.0" }, - "version": "4.0.0" -} + "dependencies": { + "randombytes": "^2.1.0" + } + +,"_resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz" +,"_integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" +,"_from": "serialize-javascript@4.0.0" +} \ No newline at end of file diff --git a/node_modules/source-map-support/package.json b/node_modules/source-map-support/package.json index 254fed2..febada8 100644 --- a/node_modules/source-map-support/package.json +++ b/node_modules/source-map-support/package.json @@ -1,37 +1,18 @@ { - "_from": "source-map-support@~0.5.12", - "_id": "source-map-support@0.5.19", - "_inBundle": false, - "_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "_location": "/source-map-support", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "source-map-support@~0.5.12", - "name": "source-map-support", - "escapedName": "source-map-support", - "rawSpec": "~0.5.12", - "saveSpec": null, - "fetchSpec": "~0.5.12" - }, - "_requiredBy": [ - "/terser" - ], - "_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "_shasum": "a98b62f86dcaf4f67399648c085291ab9e8fed61", - "_spec": "source-map-support@~0.5.12", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/terser", - "bugs": { - "url": "https://github.com/evanw/node-source-map-support/issues" + "name": "source-map-support", + "description": "Fixes stack traces for files with source maps", + "version": "0.5.19", + "main": "./source-map-support.js", + "scripts": { + "build": "node build.js", + "serve-tests": "http-server -p 1336", + "prepublish": "npm run build", + "test": "mocha" }, - "bundleDependencies": false, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" }, - "deprecated": false, - "description": "Fixes stack traces for files with source maps", "devDependencies": { "browserify": "^4.2.3", "coffeescript": "^1.12.7", @@ -39,19 +20,16 @@ "mocha": "^3.5.3", "webpack": "^1.15.0" }, - "homepage": "https://github.com/evanw/node-source-map-support#readme", - "license": "MIT", - "main": "./source-map-support.js", - "name": "source-map-support", "repository": { "type": "git", - "url": "git+https://github.com/evanw/node-source-map-support.git" + "url": "https://github.com/evanw/node-source-map-support" }, - "scripts": { - "build": "node build.js", - "prepublish": "npm run build", - "serve-tests": "http-server -p 1336", - "test": "mocha" + "bugs": { + "url": "https://github.com/evanw/node-source-map-support/issues" }, - "version": "0.5.19" -} + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" +,"_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" +,"_from": "source-map-support@0.5.19" +} \ No newline at end of file diff --git a/node_modules/source-map/package.json b/node_modules/source-map/package.json index e8f0bea..fb225f8 100644 --- a/node_modules/source-map/package.json +++ b/node_modules/source-map/package.json @@ -1,191 +1,52 @@ { - "_from": "source-map@~0.6.1", - "_id": "source-map@0.6.1", - "_inBundle": false, - "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "_location": "/source-map", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "source-map@~0.6.1", - "name": "source-map", - "escapedName": "source-map", - "rawSpec": "~0.6.1", - "saveSpec": null, - "fetchSpec": "~0.6.1" - }, - "_requiredBy": [ - "/source-map-support", - "/terser" - ], - "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "_shasum": "74722af32e9614e9c287a8d0bbde48b5e2f1a263", - "_spec": "source-map@~0.6.1", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/terser", - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", "contributors": [ - { - "name": "Tobias Koppers", - "email": "tobias.koppers@googlemail.com" - }, - { - "name": "Duncan Beevers", - "email": "duncan@dweebd.com" - }, - { - "name": "Stephen Crane", - "email": "scrane@mozilla.com" - }, - { - "name": "Ryan Seddon", - "email": "seddon.ryan@gmail.com" - }, - { - "name": "Miles Elam", - "email": "miles.elam@deem.com" - }, - { - "name": "Mihai Bazon", - "email": "mihai.bazon@gmail.com" - }, - { - "name": "Michael Ficarra", - "email": "github.public.email@michael.ficarra.me" - }, - { - "name": "Todd Wolfson", - "email": "todd@twolfson.com" - }, - { - "name": "Alexander Solovyov", - "email": "alexander@solovyov.net" - }, - { - "name": "Felix Gnass", - "email": "fgnass@gmail.com" - }, - { - "name": "Conrad Irwin", - "email": "conrad.irwin@gmail.com" - }, - { - "name": "usrbincc", - "email": "usrbincc@yahoo.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Chase Douglas", - "email": "chase@newrelic.com" - }, - { - "name": "Evan Wallace", - "email": "evan.exe@gmail.com" - }, - { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - { - "name": "Hugh Kennedy", - "email": "hughskennedy@gmail.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Simon Lydell", - "email": "simon.lydell@gmail.com" - }, - { - "name": "Jmeas Smith", - "email": "jellyes2@gmail.com" - }, - { - "name": "Michael Z Goddard", - "email": "mzgoddard@gmail.com" - }, - { - "name": "azu", - "email": "azu@users.noreply.github.com" - }, - { - "name": "John Gozde", - "email": "john@gozde.ca" - }, - { - "name": "Adam Kirkton", - "email": "akirkton@truefitinnovation.com" - }, - { - "name": "Chris Montgomery", - "email": "christopher.montgomery@dowjones.com" - }, - { - "name": "J. Ryan Stinnett", - "email": "jryans@gmail.com" - }, - { - "name": "Jack Herrington", - "email": "jherrington@walmartlabs.com" - }, - { - "name": "Chris Truter", - "email": "jeffpalentine@gmail.com" - }, - { - "name": "Daniel Espeset", - "email": "daniel@danielespeset.com" - }, - { - "name": "Jamie Wong", - "email": "jamie.lf.wong@gmail.com" - }, - { - "name": "Eddy Bruël", - "email": "ejpbruel@mozilla.com" - }, - { - "name": "Hawken Rives", - "email": "hawkrives@gmail.com" - }, - { - "name": "Gilad Peleg", - "email": "giladp007@gmail.com" - }, - { - "name": "djchie", - "email": "djchie.dev@gmail.com" - }, - { - "name": "Gary Ye", - "email": "garysye@gmail.com" - }, - { - "name": "Nicolas Lalevée", - "email": "nicolas.lalevee@hibnet.org" - } + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " ], - "deprecated": false, - "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -195,19 +56,22 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "homepage": "https://github.com/mozilla/source-map", - "license": "BSD-3-Clause", - "main": "./source-map.js", - "name": "source-map", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mozilla/source-map.git" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" -} + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" + +,"_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" +,"_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" +,"_from": "source-map@0.6.1" +} \ No newline at end of file diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json index ee7c9b8..c01bdec 100644 --- a/node_modules/supports-color/package.json +++ b/node_modules/supports-color/package.json @@ -1,85 +1,57 @@ { - "_from": "supports-color@^5.3.0", - "_id": "supports-color@5.5.0", - "_inBundle": false, - "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "_location": "/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "supports-color@^5.3.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "^5.3.0", - "saveSpec": null, - "fetchSpec": "^5.3.0" - }, - "_requiredBy": [ - "/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "_shasum": "e2e69a44ac8772f78a1ec0b35b689df6530efc8f", - "_spec": "supports-color@^5.3.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/chalk", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^3.0.0" - }, - "deprecated": false, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^0.25.0", - "import-fresh": "^2.0.0", - "xo": "^0.20.0" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "5.5.0" -} + "name": "supports-color", + "version": "5.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^3.0.0" + }, + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" +,"_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" +,"_from": "supports-color@5.5.0" +} \ No newline at end of file diff --git a/node_modules/terser/package.json b/node_modules/terser/package.json index 3acada5..67420cc 100644 --- a/node_modules/terser/package.json +++ b/node_modules/terser/package.json @@ -1,46 +1,52 @@ { - "_from": "terser@^5.0.0", - "_id": "terser@5.3.0", - "_inBundle": false, - "_integrity": "sha512-XTT3D3AwxC54KywJijmY2mxZ8nJiEjBHVYzq8l9OaYuRFWeQNBwvipuzzYEP4e+/AVcd1hqG/CqgsdIRyT45Fg==", - "_location": "/terser", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "terser@^5.0.0", - "name": "terser", - "escapedName": "terser", - "rawSpec": "^5.0.0", - "saveSpec": null, - "fetchSpec": "^5.0.0" + "name": "terser", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", + "homepage": "https://terser.org", + "author": "Mihai Bazon (http://lisperator.net/)", + "license": "BSD-2-Clause", + "version": "5.3.0", + "engines": { + "node": ">=6.0.0" }, - "_requiredBy": [ - "/rollup-plugin-terser" + "maintainers": [ + "Fábio Santos " ], - "_resolved": "https://registry.npmjs.org/terser/-/terser-5.3.0.tgz", - "_shasum": "c481f4afecdcc182d5e2bdd2ff2dc61555161e81", - "_spec": "terser@^5.0.0", - "_where": "/home/saehrimnir/Projects/datasets/node_modules/rollup-plugin-terser", - "author": { - "name": "Mihai Bazon", - "email": "mihai.bazon@gmail.com", - "url": "http://lisperator.net/" + "repository": "https://github.com/terser/terser", + "main": "dist/bundle.min.js", + "type": "module", + "module": "./main.js", + "exports": { + ".": { + "import": "./main.js", + "require": "./dist/bundle.min.js" + }, + "./package": { + "default": "./package.json" + }, + "./package.json": { + "default": "./package.json" + } }, + "types": "tools/terser.d.ts", "bin": { "terser": "bin/terser" }, - "bugs": { - "url": "https://github.com/terser/terser/issues" - }, - "bundleDependencies": false, + "files": [ + "bin", + "dist", + "lib", + "tools", + "LICENSE", + "README.md", + "CHANGELOG.md", + "PATRONS.md", + "main.js" + ], "dependencies": { "commander": "^2.20.0", "source-map": "~0.6.1", "source-map-support": "~0.5.12" }, - "deprecated": false, - "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", "devDependencies": { "@ls-lint/ls-lint": "^1.9.2", "acorn": "^7.4.0", @@ -54,9 +60,36 @@ "rollup": "2.0.6", "semver": "^7.1.3" }, - "engines": { - "node": ">=6.0.0" + "scripts": { + "test": "node test/compress.js && mocha test/mocha", + "test:compress": "node test/compress.js", + "test:mocha": "mocha test/mocha", + "lint": "eslint lib", + "lint-fix": "eslint --fix lib", + "ls-lint": "ls-lint", + "build": "rimraf dist/bundle* && rollup --config --silent", + "prepare": "npm run build", + "postversion": "echo 'Remember to update the changelog!'" }, + "keywords": [ + "uglify", + "terser", + "uglify-es", + "uglify-js", + "minify", + "minifier", + "javascript", + "ecmascript", + "es5", + "es6", + "es7", + "es8", + "es2015", + "es2016", + "es2017", + "async", + "await" + ], "eslintConfig": { "parserOptions": { "sourceType": "module", @@ -108,80 +141,13 @@ ] } }, - "exports": { - ".": { - "import": "./main.js", - "require": "./dist/bundle.min.js" - }, - "./package": { - "default": "./package.json" - }, - "./package.json": { - "default": "./package.json" - } - }, - "files": [ - "bin", - "dist", - "lib", - "tools", - "LICENSE", - "README.md", - "CHANGELOG.md", - "PATRONS.md", - "main.js" - ], - "homepage": "https://terser.org", - "keywords": [ - "uglify", - "terser", - "uglify-es", - "uglify-js", - "minify", - "minifier", - "javascript", - "ecmascript", - "es5", - "es6", - "es7", - "es8", - "es2015", - "es2016", - "es2017", - "async", - "await" - ], - "license": "BSD-2-Clause", - "main": "dist/bundle.min.js", - "maintainers": [ - { - "name": "Fábio Santos", - "email": "fabiosantosart@gmail.com" - } - ], - "module": "./main.js", - "name": "terser", "pre-commit": [ "lint-fix", "ls-lint", "test" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/terser/terser.git" - }, - "scripts": { - "build": "rimraf dist/bundle* && rollup --config --silent", - "lint": "eslint lib", - "lint-fix": "eslint --fix lib", - "ls-lint": "ls-lint", - "postversion": "echo 'Remember to update the changelog!'", - "prepare": "npm run build", - "test": "node test/compress.js && mocha test/mocha", - "test:compress": "node test/compress.js", - "test:mocha": "mocha test/mocha" - }, - "type": "module", - "types": "tools/terser.d.ts", - "version": "5.3.0" -} + ] + +,"_resolved": "https://registry.npmjs.org/terser/-/terser-5.3.0.tgz" +,"_integrity": "sha512-XTT3D3AwxC54KywJijmY2mxZ8nJiEjBHVYzq8l9OaYuRFWeQNBwvipuzzYEP4e+/AVcd1hqG/CqgsdIRyT45Fg==" +,"_from": "terser@5.3.0" +} \ No newline at end of file diff --git a/package.json b/package.json index aab18d4..99bef3c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,13 @@ { "name": "@saehrimnir/dataset", "version": "0.0.0", - "keywords": ["dataset", "iris", "mnist", "fmnist", "swissroll"], + "keywords": [ + "dataset", + "iris", + "mnist", + "fmnist", + "swissroll" + ], "description": "A JavaScript Library for serving often used datasets.", "repository": { "type": "git",