nfo-parser
Version:
A simple NFO parser
63 lines • 1.6 kB
JSON
{
"name": "nfo-parser",
"version": "0.3.0",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"description": "A simple NFO parser",
"keywords": [
"nfo"
],
"bin": {
"nfo-parser": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hqwuzhaoyi/gpt-subtitle"
},
"author": "hqwuzhaoyi <hqwuzhaoyi@gmail.com>",
"contributors": [
"hqwuzhaoyi <hqwuzhaoyi@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hqwuzhaoyi/gpt-subtitle/issues"
},
"homepage": "https://github.com/hqwuzhaoyi/gpt-subtitle#readme",
"jest": {
"preset": "jest-presets/jest/node"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"commander": "^11.1.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"typescript": "^5.3.3",
"eslint-config-custom": "1.2.0",
"jest-presets": "0.4.0",
"tsconfig": "0.3.0"
},
"dependencies": {
"execa": "^8.0.1",
"xml2js": "^0.6.2",
"shared-types": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node ./dist/cli.js",
"build": "tsc",
"prepublish": "npm run lint && npm run test && npm run build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf tsconfig.tsbuildinfo",
"dev": "tsc -w",
"lint": "eslint \"src/**/*.ts*\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watch",
"test:coverage": "jest --passWithNoTests --coverage"
}
}