firest commit
This commit is contained in:
+113
@@ -0,0 +1,113 @@
|
||||
{
|
||||
"name": "hereby",
|
||||
"version": "1.11.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"
|
||||
],
|
||||
"dependencies": {
|
||||
"command-line-usage": "^6.1.3",
|
||||
"fastest-levenshtein": "^1.0.16",
|
||||
"minimist": "^1.2.8",
|
||||
"picocolors": "^1.1.0",
|
||||
"pretty-ms": "^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ava/typescript": "^3.0.1",
|
||||
"@changesets/cli": "^2.29.7",
|
||||
"@codspeed/tinybench-plugin": "^4.0.1",
|
||||
"@fast-check/ava": "2.0.1",
|
||||
"@tsconfig/node12": "^12.1.5",
|
||||
"@types/command-line-usage": "^5.0.4",
|
||||
"@types/minimist": "^1.2.5",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/tmp": "^0.2.6",
|
||||
"ava": "~5.0.1",
|
||||
"c8": "^10.1.3",
|
||||
"dprint": "^0.50.2",
|
||||
"eslint": "^9.37.0",
|
||||
"eslint-plugin-ava": "^15.1.0",
|
||||
"eslint-plugin-simple-import-sort": "^12.1.1",
|
||||
"eslint-plugin-unicorn": "^61.0.2",
|
||||
"execa": "^6.1.0",
|
||||
"globals": "^16.4.0",
|
||||
"monocart-coverage-reports": "^2.12.9",
|
||||
"moq.ts": "^10.1.0",
|
||||
"rimraf": "^5.0.10",
|
||||
"tinybench": "~2.8.0",
|
||||
"tmp": "0.2.1",
|
||||
"typescript": "^5.9.3",
|
||||
"typescript-eslint": "^8.46.0"
|
||||
},
|
||||
"overrides": {
|
||||
"ava": {
|
||||
"emittery": "1.0.0"
|
||||
}
|
||||
},
|
||||
"packageManager": "npm@8.19.4",
|
||||
"scripts": {
|
||||
"ci": "npm ci",
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"test": "ava",
|
||||
"coverage": "c8 --experimental-monocart ava",
|
||||
"prepack": "rimraf dist && npm run build",
|
||||
"version": "changeset version && npm install"
|
||||
},
|
||||
"ava": {
|
||||
"files": [
|
||||
"**/*.test.ts"
|
||||
],
|
||||
"typescript": {
|
||||
"rewritePaths": {
|
||||
"src/": "dist/"
|
||||
},
|
||||
"compile": false
|
||||
},
|
||||
"environmentVariables": {
|
||||
"NO_COLOR": "1"
|
||||
}
|
||||
},
|
||||
"c8": {
|
||||
"all": true,
|
||||
"include": "dist",
|
||||
"reporter": [
|
||||
"text",
|
||||
"html",
|
||||
"lcov"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user