package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "ignore",
  3. "version": "3.3.10",
  4. "description": "Ignore is a manager and filter for .gitignore rules.",
  5. "main": "./ignore.js",
  6. "files": [
  7. "ignore.js",
  8. "index.d.ts"
  9. ],
  10. "scripts": {
  11. "prepublish": "npm run build",
  12. "build": "babel -o ignore.js index.js",
  13. "tsc": "tsc ./test/ts/simple.ts",
  14. "test": "npm run tsc && npm run build && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec ./test/ignore.js && codecov",
  15. "test-no-cov": "npm run tsc && npm run build && mocha --reporter spec ./test/ignore.js",
  16. "cov-report": "istanbul report"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git@github.com:kaelzhang/node-ignore.git"
  21. },
  22. "keywords": [
  23. "ignore",
  24. ".gitignore",
  25. "gitignore",
  26. "npmignore",
  27. "rules",
  28. "manager",
  29. "filter",
  30. "regexp",
  31. "regex",
  32. "fnmatch",
  33. "glob",
  34. "asterisks",
  35. "regular-expression"
  36. ],
  37. "author": "kael",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/kaelzhang/node-ignore/issues"
  41. },
  42. "devDependencies": {
  43. "babel-cli": "^6.26.0",
  44. "babel-preset-es2015": "^6.24.1",
  45. "chai": "~1.7.2",
  46. "codecov": "^3.0.2",
  47. "istanbul": "^0.4.5",
  48. "mkdirp": "^0.5.1",
  49. "mocha": "~1.13.0",
  50. "pre-suf": "^1.0.4",
  51. "rimraf": "^2.6.2",
  52. "spawn-sync": "^1.0.15",
  53. "tmp": "0.0.33",
  54. "typescript": "^2.9.2"
  55. }
  56. }