7ec2656495
- we keep ending up with multiple versions of the depedency in our tree, and it's causing problems when comparing instances - the workaround I'm implementing for now is to bump the package everywhere and set a resolution so we only have 1 shared instance - hopefully we can come up with a better method down the line
32 lines
770 B
JSON
32 lines
770 B
JSON
{
|
|
"name": "@tryghost/custom-theme-settings-service",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint": "eslint . --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@tryghost/nql-lang": "0.5.0",
|
|
"c8": "7.13.0",
|
|
"mocha": "10.2.0",
|
|
"should": "13.2.3",
|
|
"sinon": "15.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/debug": "0.1.22",
|
|
"@tryghost/errors": "1.2.23",
|
|
"@tryghost/tpl": "0.1.22",
|
|
"lodash": "4.17.21"
|
|
}
|
|
}
|