This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.61 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
48
49
50
51
52
53
{
"name": "cypress-qa",
"version": "1.0.0",
"description": "A Drupal-optimized Cypress Cucumber test definition suite",
"main": "index.js",
"scripts": {
"docs": "jsdoc --configure .jsdoc.json --verbose",
"cypress:open": "cypress open",
"test": "cypress run --env TAGS='@e2e-test' --spec 'cypress/integration/**/*.feature'",
"test:debug": "cypress open --env TAGS='@e2e-test'",
"test:headed": "cypress run --headed --env TAGS='@e2e-test' --spec 'cypress/integration/**/*.feature'",
"ci:test": "cypress run --config-file cypress.ci.json --env TAGS='@steps' --spec 'cypress/integration/**/*.feature'",
"ci:debug": "cypress open --config-file cypress.ci.json --env TAGS='@steps'",
"test:content": "cypress open --env TAGS='@content'"
},
"author": "",
"license": "Private",
"dependencies": {
"aws-sdk": "^2.951.0",
"axios": "^0.21.0",
"braintree-jsdoc-template": "^3.3.0",
"cypress": "^9.0.0",
"cypress-cucumber-preprocessor": "^4.2.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"jsdoc": "^3.6.7",
"jsdoc-cypress-cucumber-plugin": "^1.1.0"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
}
}