-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
{
"name": "text-runner",
"version": "7.5.0",
"description": "CLI test runner for documentation written in Markdown",
"homepage": "https://github.com/kevgo/text-runner",
"repository": {
"type": "git",
"url": "https://github.com/kevgo/text-runner.git"
},
"license": "ISC",
"author": "Kevin Goslar",
"type": "module",
"exports": "./dist/api.js",
"bin": "./bin/text-runner",
"files": [
"bin",
"dist",
"start.js"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"doc": "text-runner --format=dot",
"fix": "biome check --write --unsafe && sort-package-json --quiet",
"lint": "biome check --error-on-warnings && sort-package-json --check --quiet && depcheck --config=../.depcheckrc",
"reset": "rm -rf dist && yarn run build",
"stats": "find . -type f | grep -v /node_modules/ | grep -v /dist/ | grep -v \\./.git/ | grep -v \\.\\/\\.vscode/ | grep -v \\.\\/tmp\\/ | xargs scc",
"unit": "node --test --import tsx 'src/**/*.test.ts'"
},
"dependencies": {
"@babel/code-frame": "7.27.1",
"cli-cursor": "5.0.0",
"cli-progress": "3.12.0",
"end-child-processes": "2.0.3",
"jsonc-reader": "0.3.0",
"minimist": "1.2.8",
"text-runner-engine": "7.5.0"
},
"devDependencies": {
"@types/babel__code-frame": "7.0.6",
"@types/cli-progress": "3.11.6",
"@types/minimist": "1.2.5"
}
}