Add glob-hash dependency

This commit is contained in:
Marco Gario
2020-12-09 21:17:17 +01:00
parent 19e9176f97
commit 3478b5fea1
738 changed files with 54003 additions and 12191 deletions
+60 -18
View File
@@ -1,29 +1,71 @@
{
"name": "rimraf",
"version": "2.6.3",
"main": "rimraf.js",
"description": "A deep deletion module for node (like `rm -rf`)",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"repository": "git://github.com/isaacs/rimraf.git",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"test": "tap test/*.js"
"_args": [
[
"rimraf@2.6.3",
"/home/marco/repos/github/codeql-action"
]
],
"_development": true,
"_from": "rimraf@2.6.3",
"_id": "rimraf@2.6.3",
"_inBundle": false,
"_integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
"_location": "/flat-cache/rimraf",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "rimraf@2.6.3",
"name": "rimraf",
"escapedName": "rimraf",
"rawSpec": "2.6.3",
"saveSpec": null,
"fetchSpec": "2.6.3"
},
"_requiredBy": [
"/flat-cache"
],
"_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
"_spec": "2.6.3",
"_where": "/home/marco/repos/github/codeql-action",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bin": {
"rimraf": "bin.js"
},
"bugs": {
"url": "https://github.com/isaacs/rimraf/issues"
},
"bin": "./bin.js",
"dependencies": {
"glob": "^7.1.3"
},
"description": "A deep deletion module for node (like `rm -rf`)",
"devDependencies": {
"mkdirp": "^0.5.1",
"tap": "^12.1.1"
},
"files": [
"LICENSE",
"README.md",
"bin.js",
"rimraf.js"
],
"devDependencies": {
"mkdirp": "^0.5.1",
"tap": "^12.1.1"
}
}
"homepage": "https://github.com/isaacs/rimraf#readme",
"license": "ISC",
"main": "rimraf.js",
"name": "rimraf",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/rimraf.git"
},
"scripts": {
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "tap test/*.js"
},
"version": "2.6.3"
}
+92 -54
View File
@@ -1,57 +1,42 @@
{
"name": "flat-cache",
"version": "2.0.1",
"description": "A stupidly simple key/value storage using files to persist some data",
"repository": "royriojas/flat-cache",
"license": "MIT",
"_args": [
[
"flat-cache@2.0.1",
"/home/marco/repos/github/codeql-action"
]
],
"_development": true,
"_from": "flat-cache@2.0.1",
"_id": "flat-cache@2.0.1",
"_inBundle": false,
"_integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
"_location": "/flat-cache",
"_phantomChildren": {
"glob": "7.1.6"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "flat-cache@2.0.1",
"name": "flat-cache",
"escapedName": "flat-cache",
"rawSpec": "2.0.1",
"saveSpec": null,
"fetchSpec": "2.0.1"
},
"_requiredBy": [
"/file-entry-cache"
],
"_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
"_spec": "2.0.1",
"_where": "/home/marco/repos/github/codeql-action",
"author": {
"name": "Roy Riojas",
"url": "http://royriojas.com"
},
"main": "cache.js",
"files": [
"cache.js",
"utils.js",
"del.js"
],
"engines": {
"node": ">=4"
"bugs": {
"url": "https://github.com/royriojas/flat-cache/issues"
},
"precommit": [
"npm run verify --silent"
],
"prepush": [
"npm run verify --silent"
],
"scripts": {
"beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
"beautify-check": "npm run beautify -- -k",
"eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
"eslint-fix": "npm run eslint -- --fix",
"autofix": "npm run beautify && npm run eslint-fix",
"check": "npm run beautify-check && npm run eslint",
"verify": "npm run check && npm run test:cache",
"install-hooks": "prepush install && changelogx install-hook && precommit install",
"changelog": "changelogx -f markdown -o ./changelog.md",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"pre-v": "npm run verify",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
"test:cache": "mocha -R spec test/specs",
"test": "npm run verify --silent",
"cover": "istanbul cover test/runner.js html text-summary",
"watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
},
"keywords": [
"json cache",
"simple cache",
"file cache",
"key par",
"key value",
"cache"
],
"changelogx": {
"ignoreRegExp": [
"BLD: Release",
@@ -64,6 +49,12 @@
"issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
"projectName": "flat-cache"
},
"dependencies": {
"flatted": "^2.0.0",
"rimraf": "2.6.3",
"write": "1.0.3"
},
"description": "A stupidly simple key/value storage using files to persist some data",
"devDependencies": {
"chai": "^3.2.0",
"changelogx": "3.0.0",
@@ -79,9 +70,56 @@
"sinon-chai": "^2.8.0",
"watch-run": "^1.2.2"
},
"dependencies": {
"flatted": "^2.0.0",
"rimraf": "2.6.3",
"write": "1.0.3"
}
}
"engines": {
"node": ">=4"
},
"files": [
"cache.js",
"utils.js",
"del.js"
],
"homepage": "https://github.com/royriojas/flat-cache#readme",
"keywords": [
"json cache",
"simple cache",
"file cache",
"key par",
"key value",
"cache"
],
"license": "MIT",
"main": "cache.js",
"name": "flat-cache",
"precommit": [
"npm run verify --silent"
],
"prepush": [
"npm run verify --silent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/royriojas/flat-cache.git"
},
"scripts": {
"autofix": "npm run beautify && npm run eslint-fix",
"beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
"beautify-check": "npm run beautify -- -k",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
"changelog": "changelogx -f markdown -o ./changelog.md",
"check": "npm run beautify-check && npm run eslint",
"cover": "istanbul cover test/runner.js html text-summary",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
"eslint-fix": "npm run eslint -- --fix",
"install-hooks": "prepush install && changelogx install-hook && precommit install",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"pre-v": "npm run verify",
"test": "npm run verify --silent",
"test:cache": "mocha -R spec test/specs",
"verify": "npm run check && npm run test:cache",
"watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
},
"version": "2.0.1"
}