Ghost/ghost/custom-theme-settings-service/package.json
Kevin Ansfield 5c2f25d016 Fixed "Error parsing filter" when a theme name contains . chars
no issue

- we were passing the theme name directly in the model query filter string without any surrounding `'` chars meaning we were generating invalid filters
2021-10-26 10:14:39 +01:00

35 lines
889 B
JSON

{
"name": "@tryghost/custom-theme-settings-service",
"version": "0.3.0",
"repository": "https://github.com/TryGhost/Publishing/tree/main/packages/custom-theme-settings-service",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@nexes/nql": "^0.6.0",
"c8": "7.10.0",
"mocha": "9.1.3",
"should": "13.2.3",
"sinon": "11.1.2"
},
"dependencies": {
"@tryghost/debug": "^0.1.5",
"@tryghost/errors": "^0.2.14",
"@tryghost/tpl": "^0.1.4",
"lodash": "^4.17.21"
}
}