mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "resolve",
|
|
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
|
|
"version": "1.12.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/browserify/resolve.git"
|
|
},
|
|
"main": "index.js",
|
|
"keywords": [
|
|
"resolve",
|
|
"require",
|
|
"node",
|
|
"module"
|
|
],
|
|
"scripts": {
|
|
"prepublish": "safe-publish-latest",
|
|
"lint": "eslint .",
|
|
"pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async",
|
|
"tests-only": "tape test/*.js",
|
|
"pretest": "npm run lint",
|
|
"test": "npm run --silent tests-only",
|
|
"posttest": "npm run test:multirepo",
|
|
"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
|
|
},
|
|
"devDependencies": {
|
|
"@ljharb/eslint-config": "^13.1.1",
|
|
"eslint": "^5.16.0",
|
|
"object-keys": "^1.1.1",
|
|
"safe-publish-latest": "^1.1.2",
|
|
"tap": "0.4.13",
|
|
"tape": "^4.11.0"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "James Halliday",
|
|
"email": "mail@substack.net",
|
|
"url": "http://substack.net"
|
|
},
|
|
"dependencies": {
|
|
"path-parse": "^1.0.6"
|
|
}
|
|
}
|