package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@humanwhocodes/config-array",
  3. "version": "0.5.0",
  4. "description": "Glob-based configuration matching.",
  5. "author": "Nicholas C. Zakas",
  6. "main": "api.js",
  7. "files": [
  8. "api.js"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/humanwhocodes/config-array.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/humanwhocodes/config-array/issues"
  16. },
  17. "homepage": "https://github.com/humanwhocodes/config-array#readme",
  18. "scripts": {
  19. "build": "rollup -c",
  20. "format": "nitpik",
  21. "lint": "eslint *.config.js src/*.js tests/*.js",
  22. "prepublish": "npm run build",
  23. "test:coverage": "nyc --include src/*.js npm run test",
  24. "test": "mocha -r esm tests/ --recursive"
  25. },
  26. "gitHooks": {
  27. "pre-commit": "lint-staged"
  28. },
  29. "lint-staged": {
  30. "*.js": [
  31. "nitpik",
  32. "eslint --fix --ignore-pattern '!.eslintrc.js'"
  33. ]
  34. },
  35. "keywords": [
  36. "configuration",
  37. "configarray",
  38. "config file"
  39. ],
  40. "license": "Apache-2.0",
  41. "engines": {
  42. "node": ">=10.10.0"
  43. },
  44. "dependencies": {
  45. "@humanwhocodes/object-schema": "^1.2.0",
  46. "debug": "^4.1.1",
  47. "minimatch": "^3.0.4"
  48. },
  49. "devDependencies": {
  50. "@nitpik/javascript": "^0.3.3",
  51. "@nitpik/node": "0.0.5",
  52. "chai": "^4.2.0",
  53. "eslint": "^6.7.1",
  54. "esm": "^3.2.25",
  55. "lint-staged": "^10.2.8",
  56. "mocha": "^6.1.4",
  57. "nyc": "^14.1.1",
  58. "rollup": "^1.12.3",
  59. "yorkie": "^2.0.0"
  60. }
  61. }