package.json
1 { 2 "name": "resolve", 3 "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", 4 "version": "1.20.0", 5 "repository": { 6 "type": "git", 7 "url": "git://github.com/browserify/resolve.git" 8 }, 9 "main": "index.js", 10 "keywords": [ 11 "resolve", 12 "require", 13 "node", 14 "module" 15 ], 16 "scripts": { 17 "prepublish": "safe-publish-latest && cp node_modules/is-core-module/core.json ./lib/ ||:", 18 "prelint": "eclint check '**/*'", 19 "lint": "eslint --ext=js,mjs .", 20 "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", 21 "tests-only": "tape test/*.js", 22 "pretest": "npm run lint", 23 "test": "npm run --silent tests-only", 24 "posttest": "npm run test:multirepo && aud --production", 25 "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" 26 }, 27 "devDependencies": { 28 "@ljharb/eslint-config": "^17.5.1", 29 "array.prototype.map": "^1.0.3", 30 "aud": "^1.1.4", 31 "eclint": "^2.8.1", 32 "eslint": "^7.19.0", 33 "object-keys": "^1.1.1", 34 "safe-publish-latest": "^1.1.4", 35 "tap": "0.4.13", 36 "tape": "^5.1.1" 37 }, 38 "license": "MIT", 39 "author": { 40 "name": "James Halliday", 41 "email": "mail@substack.net", 42 "url": "http://substack.net" 43 }, 44 "funding": { 45 "url": "https://github.com/sponsors/ljharb" 46 }, 47 "dependencies": { 48 "is-core-module": "^2.2.0", 49 "path-parse": "^1.0.6" 50 } 51 }