-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "cucumber-testcafe-example",
"version": "1.0.0",
"description": "An example bdd project with cucumber, gherkin and testcafe",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npx cucumber-js",
"test:ci": "npm run test-init && PROFILE=ci npx cucumber-js && npm run test-report",
"test-init": "mkdir -p reports && touch reports/report.json",
"test-report": "node cucumber-html.report.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthanh/cucumber-testcafe-example.git"
},
"keywords": [
"cucumber",
"bdd",
"gherkin",
"testcafe",
"testing"
],
"author": "anthanh",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthanh/cucumber-testcafe-example/issues"
},
"homepage": "https://github.com/anthanh/cucumber-testcafe-example#readme",
"dependencies": {
"base64-img": "^1.0.4",
"cucumber": "^5.1.0",
"cucumber-html-reporter": "^5.0.0",
"testcafe": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-plugin-root-import": "^6.4.1",
"standard": "^13.1.0"
}
}