34 lines
616 B
JSON
34 lines
616 B
JSON
{
|
|
"name": "yarn-or-npm",
|
|
"version": "3.0.1",
|
|
"description": "Use Yarn or npm to execute a command",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=8.6.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:camacho/yarn-or-npm.git"
|
|
},
|
|
"author": "Patrick Camacho <patrick@daftdevelopers.com>",
|
|
"keywords": [
|
|
"yarn",
|
|
"npm",
|
|
"spawn",
|
|
"command"
|
|
],
|
|
"bin": {
|
|
"yarn-or-npm": "bin/index.js",
|
|
"yon": "bin/index.js"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"bin/"
|
|
],
|
|
"dependencies": {
|
|
"cross-spawn": "^6.0.5",
|
|
"pkg-dir": "^4.2.0"
|
|
}
|
|
}
|