package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "resolve",
  3. "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
  4. "version": "1.22.10",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/browserify/resolve.git"
  8. },
  9. "bin": {
  10. "resolve": "./bin/resolve"
  11. },
  12. "main": "index.js",
  13. "keywords": [
  14. "resolve",
  15. "require",
  16. "node",
  17. "module"
  18. ],
  19. "scripts": {
  20. "prepack": "npmignore --auto --commentLines=autogenerated && cp node_modules/is-core-module/core.json ./lib/ ||:",
  21. "prepublishOnly": "safe-publish-latest",
  22. "prepublish": "not-in-publish || npm run prepublishOnly",
  23. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  24. "lint": "eslint --ext=js,mjs --no-eslintrc -c .eslintrc . 'bin/**'",
  25. "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async",
  26. "tests-only": "tape test/*.js",
  27. "pretest": "npm run lint",
  28. "test": "npm run --silent tests-only",
  29. "posttest": "npm run test:multirepo && npx npm@'>= 10.2' audit --production",
  30. "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
  31. },
  32. "devDependencies": {
  33. "@ljharb/eslint-config": "^21.1.1",
  34. "array.prototype.map": "^1.0.7",
  35. "copy-dir": "^1.3.0",
  36. "eclint": "^2.8.1",
  37. "eslint": "=8.8.0",
  38. "in-publish": "^2.0.1",
  39. "mkdirp": "^0.5.5",
  40. "mv": "^2.1.1",
  41. "npmignore": "^0.3.1",
  42. "object-keys": "^1.1.1",
  43. "rimraf": "^2.7.1",
  44. "safe-publish-latest": "^2.0.0",
  45. "semver": "^6.3.1",
  46. "tap": "0.4.13",
  47. "tape": "^5.9.0",
  48. "tmp": "^0.0.31"
  49. },
  50. "license": "MIT",
  51. "author": {
  52. "name": "James Halliday",
  53. "email": "mail@substack.net",
  54. "url": "http://substack.net"
  55. },
  56. "funding": {
  57. "url": "https://github.com/sponsors/ljharb"
  58. },
  59. "dependencies": {
  60. "is-core-module": "^2.16.0",
  61. "path-parse": "^1.0.7",
  62. "supports-preserve-symlinks-flag": "^1.0.0"
  63. },
  64. "publishConfig": {
  65. "ignore": [
  66. ".github/workflows",
  67. "appveyor.yml",
  68. "test/resolver/malformed_package_json",
  69. "test/list-exports"
  70. ]
  71. },
  72. "engines": {
  73. "node": ">= 0.4"
  74. }
  75. }