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
+72 -39
View File
@@ -1,15 +1,43 @@
{
"name": "regexpp",
"version": "3.1.0",
"description": "Regular expression parser for ECMAScript.",
"engines": {
"node": ">=8"
},
"main": "index",
"files": [
"index.*"
"_args": [
[
"regexpp@3.1.0",
"/home/marco/repos/github/codeql-action"
]
],
"_development": true,
"_from": "regexpp@3.1.0",
"_id": "regexpp@3.1.0",
"_inBundle": false,
"_integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==",
"_location": "/regexpp",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "regexpp@3.1.0",
"name": "regexpp",
"escapedName": "regexpp",
"rawSpec": "3.1.0",
"saveSpec": null,
"fetchSpec": "3.1.0"
},
"_requiredBy": [
"/@typescript-eslint/eslint-plugin",
"/eslint"
],
"_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz",
"_spec": "3.1.0",
"_where": "/home/marco/repos/github/codeql-action",
"author": {
"name": "Toru Nagashima",
"url": "https://github.com/mysticatea"
},
"bugs": {
"url": "https://github.com/mysticatea/regexpp/issues"
},
"dependencies": {},
"description": "Regular expression parser for ECMAScript.",
"devDependencies": {
"@mysticatea/eslint-plugin": "^11.0.0",
"@types/eslint": "^4.16.2",
@@ -30,31 +58,14 @@
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "run-s build:*",
"build:tsc": "tsc --module es2015",
"build:rollup": "rollup -c",
"build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
"clean": "rimraf .temp index.*",
"codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
"lint": "eslint scripts src test --ext .ts",
"pretest": "run-s build lint",
"test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
"update:test": "ts-node scripts/update-fixtures.ts",
"update:unicode": "run-s update:unicode:*",
"update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
"update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
"preversion": "npm test",
"version": "npm run -s build",
"postversion": "git push && git push --tags",
"prewatch": "npm run -s clean",
"watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/regexpp.git"
"engines": {
"node": ">=8"
},
"files": [
"index.*"
],
"funding": "https://github.com/sponsors/mysticatea",
"homepage": "https://github.com/mysticatea/regexpp#readme",
"keywords": [
"regexp",
"regular",
@@ -74,11 +85,33 @@
"es2020",
"annexB"
],
"author": "Toru Nagashima (https://github.com/mysticatea)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/regexpp/issues"
"main": "index",
"name": "regexpp",
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/regexpp.git"
},
"homepage": "https://github.com/mysticatea/regexpp#readme",
"funding": "https://github.com/sponsors/mysticatea"
}
"scripts": {
"build": "run-s build:*",
"build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
"build:rollup": "rollup -c",
"build:tsc": "tsc --module es2015",
"clean": "rimraf .temp index.*",
"codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
"lint": "eslint scripts src test --ext .ts",
"postversion": "git push && git push --tags",
"prebuild": "npm run -s clean",
"pretest": "run-s build lint",
"preversion": "npm test",
"prewatch": "npm run -s clean",
"test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
"update:test": "ts-node scripts/update-fixtures.ts",
"update:unicode": "run-s update:unicode:*",
"update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
"update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
"version": "npm run -s build",
"watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
},
"version": "3.1.0"
}