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
+52 -20
View File
@@ -1,23 +1,37 @@
{
"name": "estraverse",
"description": "ECMAScript JS AST traversal functions",
"homepage": "https://github.com/estools/estraverse",
"main": "estraverse.js",
"version": "5.2.0",
"engines": {
"node": ">=4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"web": "http://github.com/Constellation"
}
"_args": [
[
"estraverse@5.2.0",
"/home/marco/repos/github/codeql-action"
]
],
"repository": {
"type": "git",
"url": "http://github.com/estools/estraverse.git"
"_development": true,
"_from": "estraverse@5.2.0",
"_id": "estraverse@5.2.0",
"_inBundle": false,
"_integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==",
"_location": "/esquery/estraverse",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "estraverse@5.2.0",
"name": "estraverse",
"escapedName": "estraverse",
"rawSpec": "5.2.0",
"saveSpec": null,
"fetchSpec": "5.2.0"
},
"_requiredBy": [
"/esquery"
],
"_resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
"_spec": "5.2.0",
"_where": "/home/marco/repos/github/codeql-action",
"bugs": {
"url": "https://github.com/estools/estraverse/issues"
},
"description": "ECMAScript JS AST traversal functions",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.3.13",
@@ -31,10 +45,28 @@
"jshint": "^2.5.6",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=4.0"
},
"homepage": "https://github.com/estools/estraverse",
"license": "BSD-2-Clause",
"main": "estraverse.js",
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"url": "http://github.com/Constellation"
}
],
"name": "estraverse",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/estools/estraverse.git"
},
"scripts": {
"test": "npm run-script lint && npm run-script unit-test",
"lint": "jshint estraverse.js",
"test": "npm run-script lint && npm run-script unit-test",
"unit-test": "mocha --compilers js:babel-register"
}
}
},
"version": "5.2.0"
}
+88 -54
View File
@@ -1,55 +1,45 @@
{
"name": "esquery",
"version": "1.3.1",
"author": "Joel Feenstra <jrfeenst+esquery@gmail.com>",
"contributors": [],
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
"main": "dist/esquery.min.js",
"module": "dist/esquery.esm.min.js",
"files": [
"dist/*.js",
"dist/*.map",
"parser.js",
"license.txt",
"README.md"
],
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"html",
"text"
],
"exclude": [
"parser.js",
"dist",
"tests"
"_args": [
[
"esquery@1.3.1",
"/home/marco/repos/github/codeql-action"
]
},
"scripts": {
"prepublishOnly": "npm run build && npm test",
"build:parser": "rm parser.js && pegjs --cache --format umd -o \"parser.js\" \"grammar.pegjs\"",
"build:browser": "rollup -c",
"build": "npm run build:parser && npm run build:browser",
"mocha": "mocha --require chai/register-assert --require @babel/register tests",
"test": "nyc npm run mocha && npm run lint",
"test:ci": "npm run mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/estools/esquery.git"
},
"bugs": "https://github.com/estools/esquery/issues",
"homepage": "https://github.com/estools/esquery/",
"keywords": [
"ast",
"ecmascript",
"javascript",
"query"
],
"_development": true,
"_from": "esquery@1.3.1",
"_id": "esquery@1.3.1",
"_inBundle": false,
"_integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
"_location": "/esquery",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "esquery@1.3.1",
"name": "esquery",
"escapedName": "esquery",
"rawSpec": "1.3.1",
"saveSpec": null,
"fetchSpec": "1.3.1"
},
"_requiredBy": [
"/eslint"
],
"_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
"_spec": "1.3.1",
"_where": "/home/marco/repos/github/codeql-action",
"author": {
"name": "Joel Feenstra",
"email": "jrfeenst+esquery@gmail.com"
},
"bugs": {
"url": "https://github.com/estools/esquery/issues"
},
"contributors": [],
"dependencies": {
"estraverse": "^5.1.0"
},
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
@@ -68,11 +58,55 @@
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"estraverse": "^5.1.0"
}
}
"files": [
"dist/*.js",
"dist/*.map",
"parser.js",
"license.txt",
"README.md"
],
"homepage": "https://github.com/estools/esquery/",
"keywords": [
"ast",
"ecmascript",
"javascript",
"query"
],
"license": "BSD-3-Clause",
"main": "dist/esquery.min.js",
"module": "dist/esquery.esm.min.js",
"name": "esquery",
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"html",
"text"
],
"exclude": [
"parser.js",
"dist",
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/estools/esquery.git"
},
"scripts": {
"build": "npm run build:parser && npm run build:browser",
"build:browser": "rollup -c",
"build:parser": "rm parser.js && pegjs --cache --format umd -o \"parser.js\" \"grammar.pegjs\"",
"lint": "eslint .",
"mocha": "mocha --require chai/register-assert --require @babel/register tests",
"prepublishOnly": "npm run build && npm test",
"test": "nyc npm run mocha && npm run lint",
"test:ci": "npm run mocha"
},
"version": "1.3.1"
}