UNPKG

checkscripts

Version:

Inspired by Dan Slimmon's concept of "Do Nothing scripts", this project facilitates incremental automation of repetitive tasks.

47 lines (46 loc) 1.12 kB
{ "name": "checkscripts", "version": "0.0.6", "description": "Inspired by Dan Slimmon's concept of \"Do Nothing scripts\", this project facilitates incremental automation of repetitive tasks.", "type": "module", "main": "index.js", "exports": "./dist/index.js", "files": [ "dist/*" ], "scripts": { "start": "tsx ./src/index.ts", "test": "jest", "lint": "prettier --check 'src/**/*.ts'", "lint:fix": "prettier --write 'src/**/*.ts'", "build": "rm -rf dist && tsc" }, "keywords": [ "do", "nothing", "dan", "slimmon", "incremental", "automation", "toil", "checkscripts" ], "author": "Gavin Bannerman", "repository": "github:gbannerman/checkscripts", "homepage": "https://github.com/gbannerman/checkscripts", "license": "ISC", "devDependencies": { "@types/jest": "29.5.14", "@types/node": "20.14.8", "jest": "29.7.0", "mock-stdin": "^1.0.0", "prettier": "3.5.3", "ts-jest": "29.3.2", "tsx": "4.19.4", "typescript": "5.8.3" }, "dependencies": { "chalk": "5.4.1", "log-update": "6.1.0" } }