-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
44
{
"name": "text-runner-engine",
"version": "7.5.0",
"description": "Tests 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/text-runner.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"doc": "text-runner",
"fix": "biome check --write --unsafe && dprint fmt && sort-package-json --quiet",
"lint": "biome check --error-on-warnings && dprint check && sort-package-json --check --quiet && depcheck",
"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": {
"@sindresorhus/slugify": "3.0.0",
"anchor-markdown-header": "0.7.0",
"globby": "16.1.0",
"got": "14.6.6",
"humanize-string": "3.1.0",
"is-glob": "4.0.3",
"markdown-it": "14.1.0",
"parse5": "8.0.0",
"tmp-promise": "3.0.3"
},
"devDependencies": {
"@types/is-glob": "4.0.4",
"@types/markdown-it": "14.1.2",
"assert-no-diff": "4.1.0",
"tsx": "4.21.0"
}
}