package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "list-exports-monorepo",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "Given a package name and a version number, or a path to a package.json, what specifiers does it expose?",
  6. "scripts": {
  7. "lint": "eslint . '**/bin/*'",
  8. "pretest": "npm run lint",
  9. "tests-only": "tape packages/tests",
  10. "tests:conditions": "tape packages/tests/conditions",
  11. "test": "npm run tests-only && npm run tests:conditions",
  12. "posttest": "aud --production",
  13. "since": "node since"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/ljharb/list-exports.git"
  18. },
  19. "keywords": [
  20. "exports",
  21. "cjs",
  22. "esm",
  23. "module",
  24. "commonjs",
  25. "es",
  26. "export",
  27. "entrypoint",
  28. "resolve"
  29. ],
  30. "author": "Jordan Harband <ljharb@gmail.com>",
  31. "funding": {
  32. "url": "https://github.com/sponsors/ljharb"
  33. },
  34. "devDependencies": {
  35. "@ljharb/eslint-config": "^21.1.0",
  36. "aud": "^2.0.4",
  37. "eslint": "=8.8.0",
  38. "evalmd": "^0.0.19",
  39. "glob-gitignore": "^1.0.14",
  40. "has-dynamic-import": "^2.1.0",
  41. "ls-engines": "^0.9.1",
  42. "node-exports-info": "^1.3.0",
  43. "semver": "^7.6.0",
  44. "tape": "^5.7.5"
  45. },
  46. "engines": {
  47. "node": "^18.17.0 || >=20.5.0"
  48. },
  49. "workspaces": [
  50. "packages/*"
  51. ]
  52. }