Files
codeql-action/node_modules/@humanwhocodes/config-array/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.5 KiB
JSON
Raw Normal View History

2021-07-27 16:54:26 +00:00
{
"name": "@humanwhocodes/config-array",
2024-09-16 17:29:58 +00:00
"version": "0.13.0",
2021-07-27 16:54:26 +00:00
"description": "Glob-based configuration matching.",
"author": "Nicholas C. Zakas",
"main": "api.js",
"files": [
2024-09-16 17:29:58 +00:00
"api.js",
"LICENSE",
"README.md"
2021-07-27 16:54:26 +00:00
],
"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",
2023-01-18 20:50:03 +00:00
"lint:fix": "eslint --fix *.config.js src/*.js tests/*.js",
2021-07-27 16:54:26 +00:00
"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": {
2024-09-16 17:29:58 +00:00
"@humanwhocodes/object-schema": "^2.0.3",
2024-02-26 18:08:09 +00:00
"debug": "^4.3.1",
2023-01-18 20:50:03 +00:00
"minimatch": "^3.0.5"
2021-07-27 16:54:26 +00:00
},
"devDependencies": {
2023-01-18 20:50:03 +00:00
"@nitpik/javascript": "0.4.0",
2021-07-27 16:54:26 +00:00
"@nitpik/node": "0.0.5",
2023-10-23 18:03:04 +00:00
"chai": "4.3.10",
2024-02-26 18:08:09 +00:00
"eslint": "8.52.0",
2023-01-18 20:50:03 +00:00
"esm": "3.2.25",
2023-10-23 18:03:04 +00:00
"lint-staged": "15.0.2",
2023-01-18 20:50:03 +00:00
"mocha": "6.2.3",
2023-10-23 18:03:04 +00:00
"nyc": "15.1.0",
2023-09-18 20:01:16 +00:00
"rollup": "3.28.1",
2023-01-18 20:50:03 +00:00
"yorkie": "2.0.0"
2021-07-27 16:54:26 +00:00
}
2023-01-18 20:50:03 +00:00
}