309cb37cc6
Ref [ONC-216](https://linear.app/tryghost/issue/ONC-216/improve-the-performance-of-the-membersevents-aggregated-click-event) Needed changes in nql package for this task.
33 lines
1010 B
JSON
33 lines
1010 B
JSON
{
|
|
"name": "@tryghost/bookshelf-repository",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/ghost/bookshelf-repository",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:ts": "yarn build",
|
|
"test:unit": "NODE_ENV=testing c8 --src src --all --check-coverage --100 --reporter text --reporter cobertura -- mocha --reporter dot -r ts-node/register './test/**/*.test.ts'",
|
|
"test": "yarn test:types && yarn test:unit",
|
|
"test:types": "tsc --noEmit",
|
|
"lint:code": "eslint src/ --ext .ts --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .ts --cache"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "7.14.0",
|
|
"mocha": "10.2.0",
|
|
"sinon": "15.2.0",
|
|
"@tryghost/nql": "0.12.4"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/mongo-utils": "0.6.2",
|
|
"knex": "2.4.2"
|
|
}
|
|
}
|