This repository was archived by the owner on Jul 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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.4.0",
"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": "tsc -p tsconfig.json",
"watch": "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.4.1",
"tslib": "^2.0.1"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@types/debug": "^4.1.5",
"@types/fluent-ffmpeg": "^2.1.15",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.2",
"jest": "^26.4.2",
"np": "^6.5.0",
"playwright": "^1.4.1",
"playwright-core": "^1.4.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.0",
"tsutils": "^3.17.1",
"typescript": "^4.0.3"
}
}