-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "cypress-movie",
"version": "0.0.0-development",
"description": "Exploring how one can generate product demo videos from Cypress tests",
"bin": {
"cypress-movie": "bin/record.js"
},
"scripts": {
"test": "node .",
"open": "cypress open",
"run": "cypress run",
"chrome": "cypress run --browser chrome --headless",
"crop": "./node_modules/@ffmpeg-installer/darwin-x64/ffmpeg -i cypress/videos/spec.js.mp4 -filter:v 'crop=830:674:450:46' -y out.mp4",
"clip": "./node_modules/@ffmpeg-installer/darwin-x64/ffmpeg -i out.mp4 -ss 3 -t 00:00:20.800 -acodec copy -vcodec copy -y clipped.mp4",
"ffmpeg": "node -e \"console.log(require('@ffmpeg-installer/ffmpeg').path)\"",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com> (https://glebbahmutov.com/)",
"license": "MIT",
"private": false,
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"arg": "5.0.1",
"chrome-remote-interface": "0.31.1",
"debug": "4.1.1",
"execa": "4.0.2",
"lazy-ass": "1.6.0",
"lodash": "4.17.21",
"sharp": "0.29.3",
"tiny-toast": "1.2.0"
},
"peerDependencies": {
"cypress": ">=4"
},
"devDependencies": {
"cypress": "7.7.0",
"prettier": "2.0.5",
"semantic-release": "^17.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-movie.git"
},
"files": [
"commands.js",
"src",
"bin"
]
}