UNPKG

hereby

Version:
118 lines (117 loc) 2.9 kB
{ "name": "hereby", "version": "1.8.7", "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", "@tsconfig/node12": "^12.1.0", "@types/command-line-usage": "^5.0.2", "@types/minimist": "^1.2.2", "@types/node": "^20.5.9", "@types/tmp": "^0.2.3", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", "ava": "~5.0.1", "c8": "^8.0.1", "dprint": "^0.40.2", "eslint": "^8.48.0", "eslint-plugin-ava": "^14.0.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-unicorn": "^48.0.1", "execa": "^6.1.0", "moq.ts": "^10.0.6", "rimraf": "^5.0.1", "tmp": "^0.2.1", "typescript": "^5.2.2" }, "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" ] }, "release-it": { "npm": { "publish": false }, "git": { "commitMessage": "Release v${version}", "tagName": "v${version}" }, "hooks": { "before:init": "npm run build && npm run test" } } }