Permalink
Cannot retrieve contributors at this time
61 lines (61 sloc)
1.46 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@humanwhocodes/config-array/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "@humanwhocodes/config-array", | |
"version": "0.11.10", | |
"description": "Glob-based configuration matching.", | |
"author": "Nicholas C. Zakas", | |
"main": "api.js", | |
"files": [ | |
"api.js" | |
], | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/humanwhocodes/config-array.git" | |
}, | |
"bugs": { | |
"url": "https://github.com/humanwhocodes/config-array/issues" | |
}, | |
"homepage": "https://github.com/humanwhocodes/config-array#readme", | |
"scripts": { | |
"build": "rollup -c", | |
"format": "nitpik", | |
"lint": "eslint *.config.js src/*.js tests/*.js", | |
"lint:fix": "eslint --fix *.config.js src/*.js tests/*.js", | |
"prepublish": "npm run build", | |
"test:coverage": "nyc --include src/*.js npm run test", | |
"test": "mocha -r esm tests/ --recursive" | |
}, | |
"gitHooks": { | |
"pre-commit": "lint-staged" | |
}, | |
"lint-staged": { | |
"*.js": [ | |
"eslint --fix --ignore-pattern '!.eslintrc.js'" | |
] | |
}, | |
"keywords": [ | |
"configuration", | |
"configarray", | |
"config file" | |
], | |
"license": "Apache-2.0", | |
"engines": { | |
"node": ">=10.10.0" | |
}, | |
"dependencies": { | |
"@humanwhocodes/object-schema": "^1.2.1", | |
"debug": "^4.1.1", | |
"minimatch": "^3.0.5" | |
}, | |
"devDependencies": { | |
"@nitpik/javascript": "0.4.0", | |
"@nitpik/node": "0.0.5", | |
"chai": "4.3.7", | |
"eslint": "8.41.0", | |
"esm": "3.2.25", | |
"lint-staged": "13.2.2", | |
"mocha": "6.2.3", | |
"nyc": "14.1.1", | |
"rollup": "3.20.4", | |
"yorkie": "2.0.0" | |
} | |
} |