2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/ghost/html-to-plaintext/package.json
2023-09-01 15:51:17 +02:00

28 lines
809 B
JSON

{
"name": "@tryghost/html-to-plaintext",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/html-to-plaintext",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --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"
},
"devDependencies": {
"c8": "8.0.1",
"mocha": "10.2.0"
},
"dependencies": {
"html-to-text": "8.2.1",
"lodash": "4.17.21"
}
}