cleanifix
Version:
Intelligent data cleaning CLI with natural language support - Docker-powered Python engine
78 lines (77 loc) • 1.83 kB
JSON
{
"name": "cleanifix",
"version": "1.1.0",
"description": "Intelligent data cleaning CLI with natural language support - Docker-powered Python engine",
"main": "cli/dist/index-docker.js",
"bin": {
"cleanifix": "./cli/dist/index-docker.js"
},
"scripts": {
"build": "cd cli && npm run build",
"postbuild": "cd cli && chmod +x dist/index-docker.js",
"test": "cd cli && npm test && cd ../engine && ./run-test.sh all",
"prepublishOnly": "npm run build",
"docker:build": "docker build -t cleanifix/engine:latest ./engine",
"docker:push": "docker push cleanifix/engine:latest"
},
"keywords": [
"data-cleaning",
"data-quality",
"cli",
"natural-language",
"csv",
"excel",
"json",
"parquet",
"docker",
"python",
"pandas"
],
"author": "Cleanifix Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rickyjs1955/cleanifix.git"
},
"bugs": {
"url": "https://github.com/rickyjs1955/cleanifix/issues"
},
"homepage": "https://github.com/rickyjs1955/cleanifix#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"cli/dist/**/*",
"cli/package.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^11.1.0",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"inquirer": "^8.2.6",
"dotenv": "^16.3.1",
"winston": "^3.11.0",
"axios": "^1.6.2",
"form-data": "^4.0.0",
"cli-table3": "^0.6.3",
"natural": "^6.10.0",
"yargs": "^17.7.2",
"zod": "^3.22.4",
"glob": "^10.3.10",
"mime-types": "^2.1.35"
},
"peerDependencies": {
"docker": "*"
},
"peerDependenciesMeta": {
"docker": {
"optional": false
}
}
}