npscripts
Version:
A simple module to list and run scripts in your package.json
44 lines (43 loc) • 869 B
JSON
{
"name": "npscripts",
"version": "3.0.0",
"description": "A simple module to list and run scripts in your package.json",
"bin": {
"scripts": "./bin/index.js"
},
"main": "index.js",
"preferGlobal": true,
"files": [
"bin"
],
"scripts": {
"rebuild": "npm uninstall -g . && npm i -g ."
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DGZN/NPScripts.git"
},
"keywords": [
"NPM",
"Scripts",
"npm-run",
"run",
"scripts"
],
"author": "Keiichi Lindley",
"license": "ISC",
"bugs": {
"url": "https://github.com/DGZN/NPScripts/issues"
},
"homepage": "https://github.com/DGZN/NPScripts#readme",
"dependencies": {
"inquirer": "^7.3.3",
"npm": "^6.14.8",
"ora": "^5.0.0",
"path": "^0.12.7",
"pkg-install": "^1.0.0"
}
}