-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "textrun-shell",
"version": "0.7.0",
"license": "ISC",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist/**/*.js"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"cuke": "cucumber-js --format=progress",
"doc": "text-runner",
"fix": "biome check --write --unsafe && dprint fmt && sort-package-json --quiet && ../tools/rta ghokin fmt replace features",
"lint": "biome check --error-on-warnings && dprint check && sort-package-json --check --quiet && depcheck --config=../.depcheckrc",
"reset": "rm -rf dist && yarn run build",
"unit": "node --test --import tsx 'src/**/*.test.ts'"
},
"dependencies": {
"assert-no-diff": "4.1.0",
"debug": "4.4.3",
"end-child-processes": "2.0.3",
"observable-process": "8.0.0",
"strip-ansi": "7.1.2",
"text-runner-engine": "7.5.0",
"textrun-extension": "0.7.0"
},
"devDependencies": {
"shared-cucumber-steps": "*",
"text-runner": "7.5.0",
"textrun-action": "0.7.0",
"textrun-extension": "0.7.0",
"textrun-workspace": "0.7.0",
"tsx": "4.21.0"
}
}