-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.53 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.53 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "cucumberSeleniumFramework",
"version": "0.1.0",
"description": "Cucumber JS example project",
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"generate-report": "cuke-skywalker-report",
"gherkin-lint": "node ./node_modules/gherkin-lint features -c ./.gherkin-lintrc",
"json2xml": "node ./bin/json2xml.js ./reports/combined.json",
"rmBlankJson": "node ./bin/removeBlankJSON.js",
"lint": "eslint features utils",
"lint-fix": "eslint features utils --fix",
"rerun": "sh ./rerun.sh",
"smokeTest": "PLATFORM=chrome cuke-skywalker -t '@smokeTest'",
"test": "cucumber-js -t 'not (@mute or @quarantine)'",
"test-dry": "PLATFORM=none cucumber-js -d -t 'not (@mute or @quarantine or @readyForDev or @deprecated or @smokeTest)'",
"test-wip": "node ./node_modules/cucumber/bin/cucumber-js -t @wip",
"test-parallel": "cuke-skywalker -t 'not (@mute or @quarantine or @readyForDev or @deprecated or @smokeTest)'",
"test-parallel-dry": "PLATFORM=none cuke-skywalker -d -t 'not (@mute or @quarantine or @readyForDev or @deprecated or @smokeTest)'",
"test-only": "cucumber-js -t",
"build-docs": "documentation build features/step_definitions/**/*.js --github --format md --config documentation.yml > ./docs/STEP_DEFINITIONS.md && node ./bin/parseDocs.js"
},
"repository": {
"type": "git",
"url": "git@github.com:tomatobrown/cucumberSeleniumFramework.git"
},
"author": "Tim Mader-Brown <tomatobrown@gmail.com",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run gherkin-lint"
}
},
"devDependencies": {
"chai-string": "^1.4.0",
"chromedriver": "^80.0.2",
"color": "^3.0.0",
"cuke-skywalker": "^1.1.1",
"date-and-time": "^0.6.3",
"documentation": "^11.0.1",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"fs-extra": "^4.0.2",
"gherkin-lint": "^3.3.3",
"husky": "^1.2.0",
"node-fetch": "^2.2.0",
"object-path": "^0.11.4",
"sanitize-filename": "^1.6.1",
"typescript": "^3.4.3",
"yargs": "^15.0.2"
},
"dependencies": {
"better-npm-run": "^0.1.1",
"bluebird": "^3.5.1",
"chai": "^4.2.0",
"chrono-node": "^1.4.4",
"cucumber": "^6.0.5",
"cucumber-junit": "^1.7.1",
"js-yaml": "^3.13.1",
"jsdom": "^13.2.0",
"jsontoxml": "^1.0.1",
"lodash": "^4.17.15",
"moment": "^2.22.2",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"selenium-webdriver": "3.6.0",
"xpath-to-css": "^1.0.4"
}
}