renamer_tool
Version:
Rename files based on a list you provide (like a bunch of videos that you want to change all of them to a new list based on table of contents)
42 lines (41 loc) • 1.01 kB
JSON
{
"name": "renamer_tool",
"version": "1.0.1",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "SeyyedMahdi Hassanpour",
"license": "ISC",
"keywords": [
"Rename",
"Files"
],
"scripts": {
"test": "jest --config jestconfig.json",
"rename": "node index.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeyyedKhandon/RenamerTool.git"
},
"homepage": "https://github.com/SeyyedKhandon/RenamerTool.git",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"fs": "0.0.1-security",
"glob": "^7.1.6",
"jest": "^25.5.3",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"rxjs": "^6.5.5"
}
}