UNPKG

todo-txt-cli

Version:

A CLI for todo.txt files - http://todotxt.org/

76 lines 1.75 kB
{ "name": "todo-txt-cli", "version": "0.4.3", "description": "A CLI for todo.txt files - http://todotxt.org/", "keywords": [ "todo.txt", "todo", "cli", "todo-txt-cli" ], "homepage": "https://gitlab.com/commenthol/todo-txt-cli", "bugs": { "url": "https://gitlab.com/commenthol/todo-txt-cli/-/issues" }, "repository": { "type": "git", "url": "git+https://gitlab.com/commenthol/todo-txt-cli.git" }, "license": "MIT", "author": "commenthol <commenthol@gmail.com>", "maintainers": [ "commenthol <commenthol@gmail.com>" ], "type": "module", "imports": { "#*": { "default": "./src/*" } }, "main": "src/index.js", "types": "types", "bin": { "todo": "./bin/todo.js" }, "files": [ "bin", "src", "types" ], "mocha": { "checkLeaks": true, "exit": false }, "dependencies": { "@commenthol/app-config": "^0.1.1", "colorette": "^2.0.20", "debug": "^4.4.0" }, "devDependencies": { "@types/node": "^22.13.5", "c8": "^10.1.3", "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.3", "globals": "^16.0.0", "mocha": "^11.1.0", "npm-run-all2": "^7.0.2", "rimraf": "^6.0.1", "sinon": "^19.0.2", "typescript": "^5.7.3" }, "engines": { "node": ">=20.0.0" }, "scripts": { "all": "npm-run-all clean lint c8 types", "ci": "CI=true npm run all", "clean": "rimraf dist lib es coverage", "clean:all": "npm run clean && rimraf node_modules", "c8": "c8 -r text -r html -r lcov npm test", "lint": "eslint .", "readme": "markedpp --githubid -i README.md -o README.md", "test": "mocha", "types": "rimraf types; tsc" } }