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