@devmehq/open-graph-extractor
Version:
Extract Open Graph and Twitter Card info off from html
71 lines (70 loc) • 1.92 kB
JSON
{
"name": "@devmehq/open-graph-extractor",
"version": "1.0.4",
"private": false,
"description": "Extract Open Graph and Twitter Card info off from html",
"keywords": [
"opengraph",
"opengraph-extractor",
"og",
"app links",
"dublin core",
"meta tags",
"metadata",
"ogp",
"open graph",
"scraper",
"twitter card",
"twitter"
],
"repository": {
"type": "git",
"url": "git://github.com/devmehq/open-graph-extractor"
},
"license": "MIT",
"author": "DEV.ME <support@dev.me> (https://dev.me)",
"main": "./index.js",
"scripts": {
"build": "rm -rf dist && tsc -p .",
"lint": "eslint lib test",
"lint-fix": "yarn lint -- --fix",
"mocha": "nyc mocha --report lcovonly -- test/*-test.ts",
"prettier": "prettier --write \"src/**/*.{ts,json}\" \"test/**/*.{ts,json}\"",
"test": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha",
"test-ci": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha"
},
"lint-staged": {
"src/*.{ts,tsx,js,jsx}": "prettier --write",
"test/*.{ts,tsx,js,jsx}": "prettier --write",
"docs/**": "prettier --write",
"examples/**": "prettier --write"
},
"dependencies": {
"cheerio": "1.0.0-rc.11"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/cheerio": "0.22.31",
"@types/eslint": "8.4.2",
"@types/mocha": "9.1.1",
"@types/node": "17.0.35",
"@types/prettier": "2.6.1",
"@types/should": "13.0.0",
"@types/sinon": "10.0.11",
"axios": "0.27.2",
"chai": "4.3.6",
"eslint": "8.16.0",
"husky": "8.0.1",
"lint-staged": "12.4.2",
"mocha": "10.0.0",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"should": "13.2.3",
"sinon": "14.0.0",
"ts-node": "10.8.0",
"typescript": "4.7.2"
},
"engines": {
"node": ">= 12.0"
}
}