-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
112 lines (112 loc) · 2.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "hereby",
"version": "1.10.0",
"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.27.9",
"@codspeed/tinybench-plugin": "^3.1.1",
"@fast-check/ava": "^2.0.1",
"@tsconfig/node12": "^12.1.3",
"@types/command-line-usage": "^5.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.8.1",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"ava": "~5.0.1",
"c8": "^10.1.2",
"dprint": "^0.47.4",
"eslint": "^8.57.1",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"execa": "^6.1.0",
"monocart-coverage-reports": "^2.11.1",
"moq.ts": "^10.1.0",
"rimraf": "^5.0.10",
"tinybench": "~2.8.0",
"tmp": "0.2.1",
"typescript": "^5.6.3"
},
"overrides": {
"ava": {
"emittery": "1.0.0"
}
},
"packageManager": "[email protected]",
"scripts": {
"ci": "npm ci",
"build": "tsc",
"watch": "tsc --watch",
"test": "ava",
"coverage": "c8 --experimental-monocart ava",
"prepack": "rimraf dist && npm run build"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
},
"environmentVariables": {
"NO_COLOR": "1"
}
},
"c8": {
"all": true,
"include": "dist",
"reporter": [
"text",
"html",
"lcov"
]
}
}