forked from qawolf/playwright-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
54
55
56
57
58
59
60
61
62
{
"author": "QA Wolf",
"name": "playwright-video",
"license": "BSD-3-Clause-Clear",
"version": "2.3.1",
"description": "Capture a video of a Playwright page",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"src"
],
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npx tsc -p tsconfig.json",
"watch": "npx tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts,.tsx",
"release": "np --no-cleanup",
"test": "jest",
"test:watch": "jest --watch",
"version": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qawolf/playwright-video.git"
},
"bugs": {
"url": "https://github.com/qawolf/playwright-video/issues"
},
"dependencies": {
"debug": "*",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^9.0.1",
"playwright-core": "^1.2.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@types/debug": "^4.1.5",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.19",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.18.0",
"jest": "^26.1.0",
"np": "^6.3.0",
"playwright": "^1.2.0",
"playwright-core": "^1.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"tsutils": "^3.17.1",
"typescript": "^3.9.6"
}
}