package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@istanbuljs/load-nyc-config",
  3. "version": "1.1.0",
  4. "description": "Utility function to load nyc configuration",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "xo",
  8. "test": "tap",
  9. "snap": "npm test -- --snapshot",
  10. "release": "standard-version"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "license": "ISC",
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/istanbuljs/load-nyc-config.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/istanbuljs/load-nyc-config/issues"
  22. },
  23. "homepage": "https://github.com/istanbuljs/load-nyc-config#readme",
  24. "dependencies": {
  25. "camelcase": "^5.3.1",
  26. "find-up": "^4.1.0",
  27. "get-package-type": "^0.1.0",
  28. "js-yaml": "^3.13.1",
  29. "resolve-from": "^5.0.0"
  30. },
  31. "devDependencies": {
  32. "semver": "^6.3.0",
  33. "standard-version": "^7.0.0",
  34. "tap": "^14.10.5",
  35. "xo": "^0.25.3"
  36. },
  37. "xo": {
  38. "ignores": [
  39. "test/fixtures/extends/invalid.*"
  40. ],
  41. "rules": {
  42. "require-atomic-updates": 0,
  43. "capitalized-comments": 0,
  44. "unicorn/import-index": 0,
  45. "import/extensions": 0,
  46. "import/no-useless-path-segments": 0
  47. }
  48. }
  49. }