Files
JS-VMAF/package.json
T
Michael Fabian 'Xaymar' Dirks dee9eed566 1.1.1: Fix filter chain and libvmaf input order
- The order of inputs to libvmaf is distorted, then reference. Earlier versions had this inverted accidentally.
- Format conversion now happens after color conversion and scaling, and now supports the optional argument.
2022-12-27 16:11:49 +01:00

28 lines
894 B
JSON

{
"name": "js-vmaf",
"version": "1.1.1",
"description": "A simple tool to quickly and correctly compare a reference file with a distorted file using VMAF.",
"main": "generated/index.js",
"scripts": {
"lint": "npx eslint ./source --ext .ts,.mts",
"fix": "npx eslint ./source --ext .ts,.mts --fix",
"compile": "npx tsc",
"build": "npm run fix && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michael Fabian 'Xaymar' Dirks <info@xaymar.com>",
"license": "BSD 3-Clause \"New\" or \"Revised\" License",
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"typescript": "^4.9.4"
},
"dependencies": {
"argparse": "^2.0.1",
"percentile": "^1.6.0"
}
}