html-tables-to-json
Version:
Parser for HTML to JSON
48 lines (47 loc) • 1.08 kB
JSON
{
"name": "html-tables-to-json",
"version": "0.0.3",
"description": "Parser for HTML to JSON",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/au2nd/htmltable"
},
"keywords": [
"html",
"table",
"csv"
],
"main": "./build/src",
"types": "./build/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
"test": "jest ./test",
"prebuild": "npm run clean",
"clean": "rm -rf ./build"
},
"author": "au2nd <chotnt741@gmail.com>",
"license": "MIT",
"files": [
"build/package.json",
"build/src/**"
],
"devDependencies": {
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^7.24.0",
"jest": "^28.1.2",
"prettier": "^2.8.8",
"ts-jest": "^28.0.5",
"typescript": "^4.8.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12"
}
}