UNPKG

hereby

Version:
107 lines (106 loc) 2.65 kB
{ "name": "hereby", "version": "1.8.9", "description": "A simple task runner", "repository": "github:jakebailey/hereby", "type": "module", "bin": "./bin/hereby.js", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./cli": "./dist/cli.js", "./package.json": "./package.json" }, "author": "Jake Bailey", "license": "MIT", "keywords": [ "hereby", "herebyfile", "task", "runner", "build", "gulp", "make", "makefile" ], "engines": { "node": ">= 12.20" }, "preferUnplugged": true, "files": [ "README.md", "LICENSE", "./dist/**/*.js", "!**/__tests__/**", "./dist/index.d.ts" ], "dependencies": { "command-line-usage": "^6.1.3", "fastest-levenshtein": "^1.0.16", "import-meta-resolve": "^2.2.2", "minimist": "^1.2.8", "picocolors": "^1.0.0", "pretty-ms": "^8.0.0" }, "devDependencies": { "@ava/typescript": "^3.0.1", "@changesets/cli": "^2.27.1", "@tsconfig/node12": "^12.1.0", "@types/command-line-usage": "^5.0.4", "@types/minimist": "^1.2.5", "@types/node": "^20.10.6", "@types/tmp": "^0.2.6", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", "ava": "~5.0.1", "c8": "^8.0.1", "dprint": "^0.45.0", "eslint": "^8.56.0", "eslint-plugin-ava": "^14.0.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-unicorn": "^50.0.1", "execa": "^6.1.0", "moq.ts": "^10.1.0", "rimraf": "^5.0.5", "tmp": "^0.2.1", "typescript": "^5.3.3" }, "overrides": { "ava": { "emittery": "1.0.0" } }, "packageManager": "npm@8.19.4", "scripts": { "ci": "npm ci", "build": "tsc", "watch": "tsc --watch", "test": "ava", "coverage": "c8 ava", "prepack": "rimraf dist && npm run build" }, "ava": { "typescript": { "rewritePaths": { "src/": "dist/" }, "compile": false }, "environmentVariables": { "NO_COLOR": "1" } }, "c8": { "all": true, "include": "dist", "reporter": [ "text", "html", "lcov" ] } }