package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@npmcli/fs",
  3. "version": "4.0.0",
  4. "description": "filesystem utilities for the npm cli",
  5. "main": "lib/index.js",
  6. "files": [
  7. "bin/",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "snap": "tap",
  12. "test": "tap",
  13. "npmclilint": "npmcli-lint",
  14. "lint": "npm run eslint",
  15. "lintfix": "npm run eslint -- --fix",
  16. "posttest": "npm run lint",
  17. "postsnap": "npm run lintfix --",
  18. "postlint": "template-oss-check",
  19. "template-oss-apply": "template-oss-apply --force",
  20. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/npm/fs.git"
  25. },
  26. "keywords": [
  27. "npm",
  28. "oss"
  29. ],
  30. "author": "GitHub Inc.",
  31. "license": "ISC",
  32. "devDependencies": {
  33. "@npmcli/eslint-config": "^5.0.0",
  34. "@npmcli/template-oss": "4.23.3",
  35. "tap": "^16.0.1"
  36. },
  37. "dependencies": {
  38. "semver": "^7.3.5"
  39. },
  40. "engines": {
  41. "node": "^18.17.0 || >=20.5.0"
  42. },
  43. "templateOSS": {
  44. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  45. "version": "4.23.3",
  46. "publish": true
  47. },
  48. "tap": {
  49. "nyc-arg": [
  50. "--exclude",
  51. "tap-snapshots/**"
  52. ]
  53. }
  54. }