2023-08-29 18:06:57 +03:00
|
|
|
{
|
|
|
|
"name": "@tryghost/recommendations",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/ghost/recommendations",
|
|
|
|
"author": "Ghost Foundation",
|
|
|
|
"private": true,
|
|
|
|
"main": "build/index.js",
|
|
|
|
"types": "build/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "tsc --watch --preserveWatchOutput --sourceMap",
|
|
|
|
"build": "tsc",
|
|
|
|
"build:ts": "yarn build",
|
|
|
|
"prepare": "tsc",
|
2023-10-05 13:09:39 +03:00
|
|
|
"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'",
|
2023-08-29 18:06:57 +03:00
|
|
|
"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": {
|
2023-08-31 17:57:18 +03:00
|
|
|
"@types/node": "^20.5.7",
|
2023-08-29 18:06:57 +03:00
|
|
|
"c8": "8.0.1",
|
|
|
|
"mocha": "10.2.0",
|
|
|
|
"sinon": "15.2.0",
|
|
|
|
"ts-node": "10.9.1",
|
2023-12-06 22:57:27 +03:00
|
|
|
"typescript": "5.3.3"
|
2023-08-29 18:06:57 +03:00
|
|
|
},
|
2023-09-01 11:48:14 +03:00
|
|
|
"dependencies": {
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/tpl": "0.1.26",
|
2023-10-12 10:50:42 +03:00
|
|
|
"@tryghost/errors": "1.2.26",
|
2023-09-01 12:52:16 +03:00
|
|
|
"@tryghost/in-memory-repository": "0.0.0",
|
|
|
|
"@tryghost/bookshelf-repository": "0.0.0",
|
2023-10-12 10:50:42 +03:00
|
|
|
"@tryghost/logging": "2.4.8"
|
2023-09-01 11:48:14 +03:00
|
|
|
}
|
2023-08-29 18:06:57 +03:00
|
|
|
}
|