UNPKG

hereby

Version:
64 lines (63 loc) 1.71 kB
{ "name": "hereby", "version": "1.15.1", "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" ], "devDependencies": { "@changesets/cli": "^2.31.0", "@eslint/js": "^10.0.1", "@types/node": "^25.6.0", "dprint": "^0.54.0", "eslint": "^10.2.1", "eslint-plugin-simple-import-sort": "^13.0.0", "globals": "^17.5.0", "monocart-coverage-reports": "^2.12.11", "typescript": "^6.0.3", "typescript-eslint": "^8.59.0" }, "packageManager": "npm@8.19.4", "scripts": { "ci": "npm ci", "build": "tsc", "watch": "tsc --watch", "test": "node dist/__tests__/runTests.js", "coverage": "mcr node dist/__tests__/runTests.js", "prepack": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\" && npm run build", "version": "changeset version && npm install" } }