-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "@delta-reporter/delta-playwright-plugin",
"version": "1.0.6",
"description": "Plugin to integrate Playwright with Delta Reporter.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"axios": "^0.27.2",
"axios-retry": "^3.2.5"
},
"files": [
"/build"
],
"devDependencies": {
"@playwright/test": "^1.17.1",
"@types/jest": "^27.0.1",
"@types/node": "^15.14.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delta-reporter/delta-reporter-playwright.git"
},
"author": "Juan Negrier <juannegrier@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/delta-reporter/delta-reporter-playwright/issues"
},
"homepage": "https://github.com/delta-reporter/delta-reporter-playwright#readme",
"engines": {
"node": ">= 10.0.0"
}
}