microdata-parser-ts
Version:
Microdata parser. Extract and parse microdata from any website
72 lines (71 loc) • 2.01 kB
JSON
{
"name": "microdata-parser-ts",
"version": "0.0.1",
"description": "Microdata parser. Extract and parse microdata from any website",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/raed667/microdata-parser-ts",
"license": "MIT",
"keywords": [
"microdata",
"micro-data",
"parser",
"json-ld",
"schema"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:jest": "jest",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"watch:build": "tsc -p tsconfig.json -w",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test cov:check"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cross-fetch": "^3.1.5",
"hasha": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"codecov": "^3.5.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.4.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"np": "^7.6.2",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"LICENSE",
"README.md"
]
}