UNPKG

scaffold-scripts

Version:

Simple CLI tool for managing and running your own scripts. Add any script, run it anywhere.

73 lines (72 loc) 2.06 kB
{ "name": "scaffold-scripts", "version": "3.0.28", "description": "Simple CLI tool for managing and running your own scripts. Add any script, run it anywhere.", "main": "dist/index.js", "bin": { "scaffold": "./bin/scaffold.js", "scripts": "./bin/scaffold.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:basic": "jest tests/basic.test.ts", "test:aliases": "jest tests/aliases.test.ts", "test:ci": "npm run lint && npm run build && npm run test:basic && npm run test:aliases", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "prepack": "npm run build", "prepare": "husky install", "install-global": "npm install -g .", "uninstall-global": "npm uninstall -g scaffold-scripts" }, "keywords": [ "cli", "scripts", "automation", "script-manager", "bash", "powershell", "python", "workflow", "productivity", "developer-tools" ], "author": "ChrisColeTech", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ChrisColeTech/scaffold-scripts.git" }, "bugs": { "url": "https://github.com/ChrisColeTech/scaffold-scripts/issues" }, "homepage": "https://github.com/ChrisColeTech/scaffold-scripts#readme", "dependencies": { "@types/prompts": "^2.4.9", "chalk": "^4.1.2", "commander": "^11.1.0", "ora": "^5.4.1", "prompts": "^2.4.2", "sqlite3": "^5.1.6" }, "devDependencies": { "@types/jest": "^29.5.8", "@types/node": "^20.10.0", "@types/sqlite3": "^3.1.11", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "eslint": "^8.54.0", "husky": "^8.0.3", "jest": "^29.7.0", "ts-jest": "^29.1.1", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" } }