-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1 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
{
"name": "textrun-repo",
"version": "0.2.0",
"description": "Text-Runner actions for verifying the content of the current repository",
"license": "ISC",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist/**/*.js"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"cuke": "cucumber-js --format=progress",
"doc": "text-run static --format=summary && text-run dynamic --format=progress",
"fix": "eslint . --fix --ext=.ts --ignore-path=../.eslintignore && prettier --write .",
"lint": "prettier -l . && eslint . --ext=.ts --ignore-path=../.eslintignore && depcheck --config=../.depcheckrc"
},
"dependencies": {
"assert-no-diff": "3.0.6",
"colorette": "2.0.19",
"eol": "0.9.1",
"text-runner-core": "6.0.0"
},
"devDependencies": {
"shared-cucumber-steps": "*",
"text-runner": "6.0.0",
"textrun-action": "0.2.0",
"textrun-extension": "0.2.0",
"textrun-npm": "0.2.0",
"ts-node": "10.9.1"
}
}