package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "ignore",
  3. "version": "4.0.6",
  4. "description": "Ignore is a manager and filter for .gitignore rules.",
  5. "files": [
  6. "legacy.js",
  7. "index.js",
  8. "index.d.ts",
  9. "LICENSE-MIT"
  10. ],
  11. "scripts": {
  12. "prepublish": "npm run build",
  13. "build": "babel -o legacy.js index.js",
  14. "test:lint": "eslint .",
  15. "test:tsc": "tsc ./test/ts/simple.ts",
  16. "test:git": "tap test/git-check-ignore.js",
  17. "test:ignore": "tap test/ignore.js --coverage",
  18. "test-no-cov": "npm run test:lint && npm run test:tsc && tap test/*.js --coverage",
  19. "test": "npm run test-no-cov",
  20. "posttest": "tap --coverage-report=html && codecov"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com:kaelzhang/node-ignore.git"
  25. },
  26. "keywords": [
  27. "ignore",
  28. ".gitignore",
  29. "gitignore",
  30. "npmignore",
  31. "rules",
  32. "manager",
  33. "filter",
  34. "regexp",
  35. "regex",
  36. "fnmatch",
  37. "glob",
  38. "asterisks",
  39. "regular-expression"
  40. ],
  41. "author": "kael",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/kaelzhang/node-ignore/issues"
  45. },
  46. "devDependencies": {
  47. "babel-cli": "^6.26.0",
  48. "babel-preset-env": "^1.7.0",
  49. "codecov": "^3.0.4",
  50. "eslint": "^5.3.0",
  51. "eslint-config-ostai": "^1.3.2",
  52. "eslint-plugin-import": "^2.13.0",
  53. "mkdirp": "^0.5.1",
  54. "pre-suf": "^1.1.0",
  55. "rimraf": "^2.6.2",
  56. "spawn-sync": "^2.0.0",
  57. "tap": "^12.0.1",
  58. "tmp": "0.0.33",
  59. "typescript": "^3.0.1"
  60. },
  61. "engines": {
  62. "node": ">= 4"
  63. }
  64. }