@afuadajo/csv-validator
Version:
A CSV validator library for Node.js
37 lines (36 loc) • 808 B
JSON
{
"name": "@afuadajo/csv-validator",
"version": "1.0.12",
"description": "A CSV validator library for Node.js",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "del-cli ./build/*",
"build": "npm run clean && tsc",
"pack": "npm run build && npm pack",
"release": "git add . && git commit -m 'updates' && npm version patch && npm run pack && npm publish"
},
"keywords": [
"csv",
"validator",
"nodejs"
],
"author": "Afuadajo",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"del-cli": "^6.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/papaparse": "^5.3.15",
"papaparse": "^5.5.0"
}
}