mirror of
https://github.com/github/codeql-action.git
synced 2026-05-16 16:20:21 +00:00
Add glob-hash dependency
This commit is contained in:
+73
-35
@@ -1,12 +1,46 @@
|
||||
{
|
||||
"name": "tsconfig-paths",
|
||||
"version": "3.9.0",
|
||||
"_args": [
|
||||
[
|
||||
"tsconfig-paths@3.9.0",
|
||||
"/home/marco/repos/github/codeql-action"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "tsconfig-paths@3.9.0",
|
||||
"_id": "tsconfig-paths@3.9.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
|
||||
"_location": "/tsconfig-paths",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "tsconfig-paths@3.9.0",
|
||||
"name": "tsconfig-paths",
|
||||
"escapedName": "tsconfig-paths",
|
||||
"rawSpec": "3.9.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.9.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-import"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
|
||||
"_spec": "3.9.0",
|
||||
"_where": "/home/marco/repos/github/codeql-action",
|
||||
"author": {
|
||||
"name": "Jonas Kello"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dividab/tsconfig-paths/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/json5": "^0.0.29",
|
||||
"json5": "^1.0.1",
|
||||
"minimist": "^1.2.0",
|
||||
"strip-bom": "^3.0.0"
|
||||
},
|
||||
"description": "Load node modules according to tsconfig paths, in run-time or via API.",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index",
|
||||
"author": "Jonas Kello",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/dividab/tsconfig-paths",
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.1.4",
|
||||
"@types/minimist": "^1.2.0",
|
||||
@@ -27,37 +61,41 @@
|
||||
"tslint": "^5.8.0",
|
||||
"typescript": "^2.4.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/json5": "^0.0.29",
|
||||
"json5": "^1.0.1",
|
||||
"minimist": "^1.2.0",
|
||||
"strip-bom": "^3.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "cd src && ts-node index.ts",
|
||||
"example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
|
||||
"example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
|
||||
"example:api": "cd example/api && ts-node main.ts",
|
||||
"example:perf": "cd example/perf && ts-node main.ts",
|
||||
"test": "mocha",
|
||||
"build": "rimraf lib && tsc -p src",
|
||||
"build:test": "rimraf ./test/js_out && tsc -p test",
|
||||
"lint": "tslint './{src,tests}/**/*.ts{,x}'",
|
||||
"verify": "yarn build && yarn lint && yarn coverage",
|
||||
"coverage": "rimraf coverage .nyc_output && nyc yarn test",
|
||||
"report-coverage": "codecov -f coverage/*.json",
|
||||
"precommit": "lint-staged",
|
||||
"publish:major": "yarn build && node scripts/publish.js major",
|
||||
"publish:minor": "yarn build && node scripts/publish.js minor",
|
||||
"publish:patch": "yarn build && node scripts/publish.js patch",
|
||||
"preversion": "yarn verify",
|
||||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
|
||||
},
|
||||
"homepage": "https://github.com/dividab/tsconfig-paths#readme",
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.ts": [
|
||||
"tslint",
|
||||
"prettier --write",
|
||||
"git add"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"name": "tsconfig-paths",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/dividab/tsconfig-paths.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf lib && tsc -p src",
|
||||
"build:test": "rimraf ./test/js_out && tsc -p test",
|
||||
"coverage": "rimraf coverage .nyc_output && nyc yarn test",
|
||||
"example:api": "cd example/api && ts-node main.ts",
|
||||
"example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
|
||||
"example:perf": "cd example/perf && ts-node main.ts",
|
||||
"example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
|
||||
"lint": "tslint './{src,tests}/**/*.ts{,x}'",
|
||||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
|
||||
"precommit": "lint-staged",
|
||||
"preversion": "yarn verify",
|
||||
"publish:major": "yarn build && node scripts/publish.js major",
|
||||
"publish:minor": "yarn build && node scripts/publish.js minor",
|
||||
"publish:patch": "yarn build && node scripts/publish.js patch",
|
||||
"report-coverage": "codecov -f coverage/*.json",
|
||||
"start": "cd src && ts-node index.ts",
|
||||
"test": "mocha",
|
||||
"verify": "yarn build && yarn lint && yarn coverage"
|
||||
},
|
||||
"types": "lib/index",
|
||||
"version": "3.9.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user