Ghost/ghost/oembed-service/package.json
Daniel Lockyer 34fe49b110
Added version information to log lines
refs https://github.com/TryGhost/Toolbox/issues/501

- this reverts commit 48dda23554
- also includes a resolution for `@elastic/elasticsearch` so we don't
  run a version that is potentially problematic - see referenced issue
  for context
2023-01-20 13:18:44 +01:00

45 lines
1.3 KiB
JSON

{
"name": "@tryghost/oembed-service",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/oembed-service",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code && yarn lint:test",
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"c8": "7.12.0",
"mocha": "10.2.0"
},
"dependencies": {
"@tryghost/errors": "1.2.20",
"@tryghost/logging": "2.4.0",
"@tryghost/tpl": "0.1.21",
"charset": "1.0.1",
"cheerio": "0.22.0",
"iconv-lite": "0.6.3",
"lodash": "4.17.21",
"metascraper": "5.33.4",
"metascraper-author": "5.33.4",
"metascraper-description": "5.33.4",
"metascraper-image": "5.33.4",
"metascraper-logo": "5.33.4",
"metascraper-logo-favicon": "5.33.4",
"metascraper-publisher": "5.33.4",
"metascraper-title": "5.33.4",
"metascraper-url": "5.33.4",
"oembed-parser": "1.4.9",
"tough-cookie": "4.1.2"
}
}