-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "text-runner",
"version": "6.0.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": {
"text-run": "./bin/text-run.mjs"
},
"files": [
"bin",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"doc": "text-run --format=summary",
"fix": "eslint . --fix --ext=.ts --ignore-path=../.eslintignore && prettier --write .",
"lint": "prettier -l . && eslint . --ext=.ts --ignore-path=../.eslintignore && depcheck --config=../.depcheckrc",
"stats": "find . -type f | grep -v /node_modules/ | grep -v /dist/ | grep -v \\./.git/ | grep -v \\.\\/\\.vscode/ | grep -v \\.\\/tmp\\/ | xargs scc",
"unit": "env NODE_NO_WARNINGS=1 mocha --reporter=dot 'src/**/*.test.ts'"
},
"dependencies": {
"@babel/code-frame": "7.18.6",
"cli-cursor": "4.0.0",
"cli-progress": "3.11.2",
"colorette": "2.0.19",
"end-child-processes": "1.0.3",
"minimist": "1.2.7",
"text-runner-core": "6.0.0",
"ts-node": "10.9.1",
"yamljs": "0.3.0"
},
"devDependencies": {
"@types/babel__code-frame": "7.0.3",
"@types/cli-progress": "3.11.0",
"@types/minimist": "1.2.2",
"@types/yamljs": "0.2.31"
}
}