-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
78 lines (78 loc) · 1.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "handbrake-js",
"author": "Lloyd Brookes <[email protected]>",
"version": "7.1.0",
"description": "Handbrake for node.js. Brings video encoding.",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/handbrake-js.git"
},
"license": "MIT",
"type": "module",
"bin": {
"handbrake": "bin/cli.js"
},
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"handbrake",
"encode",
"transcode",
"video",
"mp4",
"m4v",
"avi",
"h.264",
"h.265",
"vp8",
"mp3"
],
"engines": {
"node": ">=14"
},
"files": [
"bin/cli.js",
"lib",
"dist",
"scripts",
"index.js"
],
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test/*.js",
"dist": "75lb-nature cjs-build index.js",
"postinstall": "node scripts/install.js",
"ubuntu-setup": "./scripts/install-ubuntu.sh",
"docs": "75lb-nature jsdoc2md -t README.hbs lib/*.js index.js > README.md"
},
"dependencies": {
"ansi-escape-sequences": "^6.2.4",
"command-line-args": "^6.0.1",
"current-module-paths": "^1.1.2",
"decompress": "^4.2.1",
"node-fetch": "^3.3.2",
"object-to-spawn-args": "^2.0.1"
},
"devDependencies": {
"sleep-anywhere": "^2.1.2"
},
"standard": {
"ignore": [
"tmp",
"dist"
],
"envs": [
"node"
]
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
}
}