package.json 846 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@npmcli/fs",
  3. "version": "1.1.1",
  4. "description": "filesystem utilities for the npm cli",
  5. "main": "lib/index.js",
  6. "files": [
  7. "bin",
  8. "lib"
  9. ],
  10. "scripts": {
  11. "preversion": "npm test",
  12. "postversion": "npm publish",
  13. "prepublishOnly": "git push origin --follow-tags",
  14. "snap": "tap",
  15. "test": "tap",
  16. "npmclilint": "npmcli-lint",
  17. "lint": "eslint '**/*.js'",
  18. "lintfix": "npm run lint -- --fix",
  19. "posttest": "npm run lint",
  20. "postsnap": "npm run lintfix --",
  21. "postlint": "npm-template-check"
  22. },
  23. "keywords": [
  24. "npm",
  25. "oss"
  26. ],
  27. "author": "GitHub Inc.",
  28. "license": "ISC",
  29. "devDependencies": {
  30. "@npmcli/template-oss": "^2.3.1",
  31. "tap": "^15.0.9"
  32. },
  33. "dependencies": {
  34. "@gar/promisify": "^1.0.1",
  35. "semver": "^7.3.5"
  36. },
  37. "templateVersion": "2.3.1"
  38. }