-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
65 lines (65 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
63
64
65
{
"name": "@ffprobe-installer/ffprobe",
"version": "2.1.2",
"main": "index.js",
"scripts": {
"lint": "xo",
"preversion": "npm run test",
"types": "tsc",
"test": "xo && nyc ava && nyc report --reporter=text-lcov > coverage.lcov && codecov -t 54b3d620-a296-4d71-a717-c3e6e24ae9d9",
"prepare": "husky"
},
"types": "types/index.d.ts",
"keywords": [
"ffprobe",
"binary"
],
"author": "Oliver Sayers <talk@savagecore.uk>",
"license": "LGPL-2.1",
"description": "Platform independent binary installer of FFprobe for node projects",
"files": [
"index.js",
"lib",
"platform",
"types",
"tsconfig.json"
],
"optionalDependencies": {
"@ffprobe-installer/darwin-arm64": "5.0.1",
"@ffprobe-installer/darwin-x64": "5.1.0",
"@ffprobe-installer/linux-arm": "5.2.0",
"@ffprobe-installer/linux-arm64": "5.2.0",
"@ffprobe-installer/linux-ia32": "5.2.0",
"@ffprobe-installer/linux-x64": "5.2.0",
"@ffprobe-installer/win32-ia32": "5.1.0",
"@ffprobe-installer/win32-x64": "5.1.0"
},
"devDependencies": {
"ava": "^6.0.0",
"codecov": "^3.7.2",
"execa": "^9.1.0",
"executable": "^4.1.1",
"husky": "^9.0.6",
"nyc": "^17.0.0",
"shx": "^0.3.3",
"typescript": "^5.1.6",
"xo": "^0.59.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SavageCore/node-ffprobe-installer.git"
},
"bugs": {
"url": "https://github.com/SavageCore/node-ffprobe-installer/issues"
},
"homepage": "https://github.com/SavageCore/node-ffprobe-installer#readme",
"xo": {
"rules": {
"unicorn/prefer-module": 0,
"unicorn/prefer-top-level-await": 0
}
},
"engines": {
"node": ">=14.21.2"
}
}