-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "cy-runner",
"version": "2.0.0",
"description": "Tool to orchestrate tests on B2B applications",
"main": "cy-runner.js",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"cy-runner": "node cy-runner.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,graphql,gql}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtex-apps/cy-runner.git"
},
"keywords": [
"cypress",
"e2e",
"automated testing"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/vtex-apps/cy-runner/issues"
},
"homepage": "https://github.com/vtex-apps/cy-runner#readme",
"dependencies": {
"axios": "^1.3.4",
"cypress": "^9.6.0",
"cypress-file-upload": "^5.0.8",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vtex/prettier-config": "^1.0.0",
"eslint": "^7.4.0",
"eslint-config-vtex": "^12.7.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^4.2.5",
"lint-staged": "^13.1.2",
"prettier": "^2.4.0",
"vtex": "3.0.0-beta-ci.5",
"xlsx": "^0.18.5"
}
}