package.json 875 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "dotignore",
  3. "version": "0.1.2",
  4. "description": "ignorefile/includefile matching .gitignore spec",
  5. "main": "index.js",
  6. "bin": {
  7. "ignored": "bin/ignored"
  8. },
  9. "scripts": {
  10. "prepublish": "safe-publish-latest",
  11. "pretest": "npm run lint",
  12. "test": "node test && npm run coverage -- --quiet",
  13. "coverage": "covert test/index.js",
  14. "lint": "eslint bin/* ."
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "http://github.com/bmeck/dotignore"
  19. },
  20. "keywords": [
  21. "ignore",
  22. "gitignore",
  23. "npmignore",
  24. "glob",
  25. "pattern"
  26. ],
  27. "author": {
  28. "name": "bradleymeck"
  29. },
  30. "license": "MIT",
  31. "dependencies": {
  32. "minimatch": "^3.0.4"
  33. },
  34. "devDependencies": {
  35. "@ljharb/eslint-config": "^15.1.0",
  36. "covert": "^1.1.1",
  37. "eslint": "^6.8.0",
  38. "safe-publish-latest": "^1.1.4",
  39. "tape": "^4.12.1"
  40. }
  41. }