ntts
Version:
A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.
68 lines (67 loc) • 1.73 kB
JSON
{
"name": "ntts",
"version": "2.1.0",
"description": "A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.",
"main": "bin/cli.js",
"types": "bin/cli.d.ts",
"keywords": [
"Node.js",
"NodeJS",
"Node",
"JavaScript",
"TypeScript",
"Refactoring",
"Refactor",
"TS-Morph",
"TS",
"JS",
"TSC",
"Converter",
"Convert"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"test": "jest --runInBand",
"lint": "eslint **/*.ts --fix"
},
"bin": {
"ntts": "bin/cli.js"
},
"author": "Liam Hiscox",
"license": "ISC",
"bugs": {
"url": "https://github.com/LiamHiscox/ntts/issues"
},
"homepage": "https://github.com/LiamHiscox/ntts#readme",
"dependencies": {
"@tsconfig/node10": "^1.0.9",
"@tsconfig/node12": "^1.0.11",
"@tsconfig/node14": "^1.0.3",
"@tsconfig/node16": "^1.0.4",
"@tsconfig/node18": "^2.0.1",
"@tsconfig/node20": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chalk": "^4.1.2",
"eslint": "^8.43.0",
"ignore": "^5.2.4",
"progress": "^2.0.3",
"ts-morph": "^19.0.0",
"typescript": "^5.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/eslint": "^8.40.2",
"@types/estree": "^1.0.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@types/progress": "^2.0.5",
"@types/yargs": "^17.0.24",
"fs-extra": "^11.1.1",
"globby": "^13.2.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}