-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
52 lines (52 loc) · 3.04 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
49
50
51
52
{
"name": "cucumber-ts-starter",
"version": "6.0.0",
"description": "Starter project to write and debug cucumber-js features in TypeScript language",
"main": "index.js",
"scripts": {
"build": "rimraf build && npm run format && npm run lint && tsc && npm run cucumber-check",
"cucumber": "node ./node_modules/cucumber/bin/cucumber-js features/**/*.feature --no-color --foo=bar --logLevel=error --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format json:reports/cucumber-report.json --format summary --format progress-bar --format node_modules/cucumber-pretty",
"cucumber-check": "node ./node_modules/cucumber/bin/cucumber-js features/**/*.feature --no-color --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format summary --format progress-bar --dry-run",
"steps-usage": "node ./node_modules/cucumber/bin/cucumber-js features/**/*.feature --no-color --foo=bar --logLevel=error --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format usage --dry-run",
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"eslint-init": "eslint --init",
"format": "prettier --write \"{domains,features,hooks,loggers,reporters,step-definitions}/**/*.{ts,tsx,css,html}\" ",
"lint": "eslint ./ --ext .js,.ts,.tsx --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
"only": "npm run cucumber -- --tags @only",
"report": "ts-node reporters/cucumber-html-reporter.ts",
"snippets": "node ./node_modules/cucumber/bin/cucumber-js features/**/*.feature --dry-run --no-color --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format snippets --tags @only",
"test": "npm run cucumber",
"tsc-init": "tsc --init",
"tsc": "tsc"
},
"author": "Henri d'Orgeval",
"license": "ISC",
"dependencies": {
"@types/cucumber": "6.0.1",
"@types/cucumber-html-reporter": "5.0.1",
"@types/expect": "24.3.0",
"@types/loglevel": "1.6.3",
"@types/minimist": "1.2.1",
"@types/node": "14.14.20",
"cucumber": "6.0.5",
"cucumber-html-reporter": "5.2.0",
"cucumber-pretty": "6.0.0",
"expect": "26.6.2",
"minimist": "1.2.5",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"prettier": "2.2.1"
},
"engines": {
"node": ">=12"
}
}