-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.59 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
{
"name": "cucumber-selenium-typescript",
"description": "Simple example how to use Cucumber, Selenium and Typescript",
"version": "1.0.0",
"author": {
"name": "Isac",
"email": "isac_asj91@hotmail.com"
},
"scripts": {
"cucumber": "cucumber-js -f node_modules/cucumber-pretty -f json:report/cucumber_report.json --require ./setup.js src/features/**/*.feature --require 'src/step-definitions/**/*.ts'",
"report": "babel-node --presets=@babel/preset-env report",
"test:integration": "yarn cucumber && yarn report",
"type:check": "tsc --noEmit",
"eslint:check": "eslint src --ext .ts"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@types/cucumber": "^4.0.5",
"@types/node": "^12.0.2",
"@types/selenium-webdriver": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chromedriver": "^74.0.0",
"cucumber": "^5.1.0",
"cucumber-html-reporter": "^5.0.0",
"cucumber-pretty": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"geckodriver": "^1.16.2",
"selenium-webdriver": "^4.0.0-alpha.1",
"typescript": "^3.4.5"
},
"dependencies": {
"@babel/runtime": "^7.4.5"
}
}