Ghost/ghost/audience-feedback/package.json
Daniel Lockyer 6b1966ad9b Updated sinon dependency
- this is being done manually instead of merging the Renovate PR because
  the PR bundles another bump which doesn't pass yet
2023-03-02 12:43:42 +01:00

32 lines
881 B
JSON

{
"name": "@tryghost/audience-feedback",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/audience-feedback",
"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.13.0",
"mocha": "10.2.0",
"should": "13.2.3",
"sinon": "15.0.1"
},
"dependencies": {
"@tryghost/errors": "1.2.21",
"@tryghost/tpl": "0.1.22",
"bson-objectid": "2.0.4"
}
}