-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.22 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
{
"name": "e2e-tests",
"version": "1.0.0",
"description": "E2E tests for the application. Written with Nightwatch and Gherkin.",
"scripts": {
"lint": "pnpm prettier --write .",
"test:e2e": "cucumber-js --require cucumber.conf.js --require tests/acceptance/stepDefinitions -f @cucumber/pretty-formatter",
"test:e2e:ci": "cucumber-js --retry 1 --require cucumber.conf.js --require tests/acceptance/stepDefinitions -f @cucumber/pretty-formatter",
"test:ci": "pnpm test:e2e:ci tests/acceptance/features -t 'not @skip'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiranparajuli589/Moving-Todo.git"
},
"author": "Kiran Parajuli",
"bugs": {
"url": "https://github.com/kiranparajuli589/Moving-Todo/issues"
},
"homepage": "https://github.com/kiranparajuli589/Moving-Todo#readme",
"dependencies": {
"axios": "^0.21.2"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.2",
"@cucumber/messages": "*",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"chromedriver": "^96.0.0",
"geckodriver": "^2.0.4",
"iedriver": "^3.150.1",
"nightwatch": "^1.3.4",
"nightwatch-api": "^3.0.1",
"selenium-server": "^3.141.59",
"prettier": "^2.3.1"
}
}