generated from e2e-boilerplate/cypress-es-modules-chai-assert
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"author": "Girma Nigusse <xgirma@gmail.com>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/cypress-es-modules-cucumber-chai-assert/issues"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"dependencies": {
"cucumber": "6.0.5",
"cypress": "5.6.0",
"cypress-cucumber-preprocessor": "4.2.0",
"rimraf": "3.0.2"
},
"description": "Cypress end-to-end test automation boilerplate. Using ES Modules, Cucumber, Chai and Assert.",
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-cucumber": "1.4.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"pretty-quick": "3.1.1"
},
"homepage": "https://github.com/e2e-boilerplate/cypress-es-modules-cucumber-chai-assert#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"assert",
"chai",
"cucumber",
"cypress",
"cypress automation",
"cypress boilerplate",
"cypress example",
"es modules",
"e2e",
"e2e tests",
"boilerplate",
"integration test",
"test automation",
"javascript"
],
"license": "MIT",
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
},
"name": "cypress-es-modules-cucumber-chai-assert",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/cypress-es-modules-cucumber-chai-assert.git"
},
"scripts": {
"clean:screenshots": "npx cypress/screenshots/*",
"clean:video": "npx rimraf cypress/videos/*",
"lint": "npx eslint --ext .js ./ --fix",
"open": "npx cypress open",
"test": "npx cypress run --spec **/*.feature"
},
"version": "1.0.0"
}