-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "qa-shadow-report",
"version": "1.1.33",
"bin": {
"qa-shadow-report": "./cli.js",
"qasr": "./cli.js",
"qasr-setup": "./scripts/postInstall.js"
},
"description": "npm package that prints formatted test reports into a google sheet or csv file",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:sanity": "node --experimental-vm-modules node_modules/.bin/jest --testNamePattern='\\[sanity\\]'",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"docs": "jsdoc -c jsdoc.json"
},
"repository": "git+ssh://[email protected]/petermsouzajr/qa-shadow-report.git",
"keywords": [
"google",
"sheets",
"cypress",
"playwright",
"report",
"testrail",
"test",
"csv"
],
"author": "Peter Michael Souza Junior",
"license": "MIT",
"bugs": {
"url": "https://github.com/petermsouzajr/qa-shadow-report/issues"
},
"homepage": "https://github.com/petermsouzajr/qa-shadow-report#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@faker-js/faker": "^8.3.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"docdash": "^2.0.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jsdoc": "^4.0.3"
},
"dependencies": {
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"googleapis": "^126.0.1",
"prettier": "^3.0.3"
},
"type": "module"
}