mirror of
https://github.com/azure/login.git
synced 2026-03-13 18:17:09 -04:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
111 lines
3.1 KiB
JSON
111 lines
3.1 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
"esprima@1.2.2",
|
|
"E:\\Repos\\GHActions\\login"
|
|
]
|
|
],
|
|
"_from": "esprima@1.2.2",
|
|
"_id": "esprima@1.2.2",
|
|
"_inBundle": false,
|
|
"_integrity": "sha1-dqD9Zvz+FU/SkmZ9wmQBl1CxZXs=",
|
|
"_location": "/esprima",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "version",
|
|
"registry": true,
|
|
"raw": "esprima@1.2.2",
|
|
"name": "esprima",
|
|
"escapedName": "esprima",
|
|
"rawSpec": "1.2.2",
|
|
"saveSpec": null,
|
|
"fetchSpec": "1.2.2"
|
|
},
|
|
"_requiredBy": [
|
|
"/jsonpath"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
|
|
"_spec": "1.2.2",
|
|
"_where": "E:\\Repos\\GHActions\\login",
|
|
"author": {
|
|
"name": "Ariya Hidayat",
|
|
"email": "ariya.hidayat@gmail.com"
|
|
},
|
|
"bin": {
|
|
"esparse": "bin/esparse.js",
|
|
"esvalidate": "bin/esvalidate.js"
|
|
},
|
|
"bugs": {
|
|
"url": "http://issues.esprima.org"
|
|
},
|
|
"description": "ECMAScript parsing infrastructure for multipurpose analysis",
|
|
"devDependencies": {
|
|
"complexity-report": "~0.6.1",
|
|
"eslint": "~0.4.3",
|
|
"istanbul": "~0.2.6",
|
|
"jscs": "~1.2.4",
|
|
"jslint": "~0.1.9",
|
|
"json-diff": "~0.3.1",
|
|
"optimist": "~0.6.0",
|
|
"regenerate": "~0.5.4",
|
|
"unicode-6.3.0": "~0.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.4.0"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"test/run.js",
|
|
"test/runner.js",
|
|
"test/test.js",
|
|
"test/compat.js",
|
|
"test/reflect.js",
|
|
"esprima.js"
|
|
],
|
|
"homepage": "http://esprima.org",
|
|
"keywords": [
|
|
"ast",
|
|
"ecmascript",
|
|
"javascript",
|
|
"parser",
|
|
"syntax"
|
|
],
|
|
"licenses": [
|
|
{
|
|
"type": "BSD",
|
|
"url": "http://github.com/ariya/esprima/raw/master/LICENSE.BSD"
|
|
}
|
|
],
|
|
"main": "esprima.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "Ariya Hidayat",
|
|
"email": "ariya.hidayat@gmail.com",
|
|
"url": "http://ariya.ofilabs.com"
|
|
}
|
|
],
|
|
"name": "esprima",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/ariya/esprima.git"
|
|
},
|
|
"scripts": {
|
|
"analyze-complexity": "node tools/list-complexity.js",
|
|
"analyze-coverage": "node node_modules/istanbul/lib/cli.js cover test/runner.js",
|
|
"benchmark": "node test/benchmarks.js",
|
|
"benchmark-quick": "node test/benchmarks.js quick",
|
|
"check-complexity": "node node_modules/complexity-report/src/cli.js --maxcc 14 --silent -l -w esprima.js",
|
|
"check-coverage": "node node_modules/istanbul/lib/cli.js check-coverage --statement 100 --branch 100 --function 100",
|
|
"check-version": "node tools/check-version.js",
|
|
"complexity": "npm run-script analyze-complexity && npm run-script check-complexity",
|
|
"coverage": "npm run-script analyze-coverage && npm run-script check-coverage",
|
|
"eslint": "node node_modules/eslint/bin/eslint.js esprima.js",
|
|
"generate-regex": "node tools/generate-identifier-regex.js",
|
|
"jscs": "node node_modules/.bin/jscs esprima.js",
|
|
"jslint": "node node_modules/jslint/bin/jslint.js esprima.js",
|
|
"lint": "npm run-script check-version && npm run-script eslint && npm run-script jscs && npm run-script jslint",
|
|
"test": "npm run-script lint && node test/run.js && npm run-script coverage && npm run-script complexity"
|
|
},
|
|
"version": "1.2.2"
|
|
}
|