You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
569 B
34 lines
569 B
{ |
|
"name": "resolve-from", |
|
"version": "4.0.0", |
|
"description": "Resolve the path of a module like `require.resolve()` but from a given path", |
|
"license": "MIT", |
|
"repository": "sindresorhus/resolve-from", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=4" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava" |
|
}, |
|
"files": [ |
|
"index.js" |
|
], |
|
"keywords": [ |
|
"require", |
|
"resolve", |
|
"path", |
|
"module", |
|
"from", |
|
"like", |
|
"import" |
|
], |
|
"devDependencies": { |
|
"ava": "*", |
|
"xo": "*" |
|
} |
|
}
|
|
|