-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 887 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 887 Bytes
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": "javascript-cukes-starter",
"version": "1.0.0",
"description": "The minimal setup to work with CucumberJS and Selenium web driver",
"main": "index.js",
"scripts": {
"cukes": "node node_modules/cucumber/bin/cucumber.js ./test/features --tags \"not @todo\" --tags \"not @manual\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjendyk/javascript-cukes-starter.git"
},
"keywords": [
"cucumberjs",
"javascript",
"selenium",
"web",
"driver",
"setup"
],
"author": "bjendyk",
"license": "ISC",
"bugs": {
"url": "https://github.com/bjendyk/javascript-cukes-starter/issues"
},
"homepage": "https://github.com/bjendyk/javascript-cukes-starter#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cucumber": "^3.1.0",
"selenium-webdriver": "^3.6.0"
}
}