Ghost/ghost/image-transform/package.json

35 lines
766 B
JSON
Raw Normal View History

{
"name": "@tryghost/image-transform",
"version": "1.0.6",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/image-transform",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
2020-11-03 02:07:13 +03:00
"mocha": "8.2.1",
"should": "13.2.3",
2021-01-06 18:05:05 +03:00
"sinon": "9.2.3"
},
"dependencies": {
"@tryghost/errors": "^0.2.6",
2020-04-22 14:21:42 +03:00
"bluebird": "3.7.2",
2020-08-04 15:26:16 +03:00
"fs-extra": "9.0.1"
},
"optionalDependencies": {
2020-10-21 13:02:12 +03:00
"sharp": "0.26.2"
}
}