UNPKG

2.65 kBJSONView Raw
1{
2 "name": "hereby",
3 "version": "1.8.9",
4 "description": "A simple task runner",
5 "repository": "github:jakebailey/hereby",
6 "type": "module",
7 "bin": "./bin/hereby.js",
8 "main": "./dist/index.js",
9 "types": "./dist/index.d.ts",
10 "exports": {
11 ".": {
12 "types": "./dist/index.d.ts",
13 "import": "./dist/index.js"
14 },
15 "./cli": "./dist/cli.js",
16 "./package.json": "./package.json"
17 },
18 "author": "Jake Bailey",
19 "license": "MIT",
20 "keywords": [
21 "hereby",
22 "herebyfile",
23 "task",
24 "runner",
25 "build",
26 "gulp",
27 "make",
28 "makefile"
29 ],
30 "engines": {
31 "node": ">= 12.20"
32 },
33 "preferUnplugged": true,
34 "files": [
35 "README.md",
36 "LICENSE",
37 "./dist/**/*.js",
38 "!**/__tests__/**",
39 "./dist/index.d.ts"
40 ],
41 "dependencies": {
42 "command-line-usage": "^6.1.3",
43 "fastest-levenshtein": "^1.0.16",
44 "import-meta-resolve": "^2.2.2",
45 "minimist": "^1.2.8",
46 "picocolors": "^1.0.0",
47 "pretty-ms": "^8.0.0"
48 },
49 "devDependencies": {
50 "@ava/typescript": "^3.0.1",
51 "@changesets/cli": "^2.27.1",
52 "@tsconfig/node12": "^12.1.0",
53 "@types/command-line-usage": "^5.0.4",
54 "@types/minimist": "^1.2.5",
55 "@types/node": "^20.10.6",
56 "@types/tmp": "^0.2.6",
57 "@typescript-eslint/eslint-plugin": "^6.17.0",
58 "@typescript-eslint/parser": "^6.17.0",
59 "ava": "~5.0.1",
60 "c8": "^8.0.1",
61 "dprint": "^0.45.0",
62 "eslint": "^8.56.0",
63 "eslint-plugin-ava": "^14.0.0",
64 "eslint-plugin-simple-import-sort": "^10.0.0",
65 "eslint-plugin-unicorn": "^50.0.1",
66 "execa": "^6.1.0",
67 "moq.ts": "^10.1.0",
68 "rimraf": "^5.0.5",
69 "tmp": "^0.2.1",
70 "typescript": "^5.3.3"
71 },
72 "overrides": {
73 "ava": {
74 "emittery": "1.0.0"
75 }
76 },
77 "packageManager": "npm@8.19.4",
78 "scripts": {
79 "ci": "npm ci",
80 "build": "tsc",
81 "watch": "tsc --watch",
82 "test": "ava",
83 "coverage": "c8 ava",
84 "prepack": "rimraf dist && npm run build"
85 },
86 "ava": {
87 "typescript": {
88 "rewritePaths": {
89 "src/": "dist/"
90 },
91 "compile": false
92 },
93 "environmentVariables": {
94 "NO_COLOR": "1"
95 }
96 },
97 "c8": {
98 "all": true,
99 "include": "dist",
100 "reporter": [
101 "text",
102 "html",
103 "lcov"
104 ]
105 }
106}