2022-08-11 17:39:37 +03:00
|
|
|
{
|
|
|
|
"name": "@tryghost/api-framework",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/api-framework",
|
|
|
|
"author": "Ghost Foundation",
|
|
|
|
"private": true,
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "echo \"Implement me!\"",
|
2022-08-15 16:20:45 +03:00
|
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
|
|
"test": "yarn test:unit",
|
2022-08-11 17:39:37 +03:00
|
|
|
"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": {
|
2022-08-18 12:36:16 +03:00
|
|
|
"bluebird": "3.7.2",
|
2022-08-11 17:39:37 +03:00
|
|
|
"c8": "7.12.0",
|
|
|
|
"mocha": "10.0.0",
|
|
|
|
"should": "13.2.3",
|
2022-10-05 03:36:08 +03:00
|
|
|
"sinon": "14.0.1"
|
2022-08-11 17:39:37 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@tryghost/debug": "0.1.18",
|
2022-10-12 06:16:05 +03:00
|
|
|
"@tryghost/errors": "1.2.18",
|
|
|
|
"@tryghost/promise": "0.1.22",
|
2022-08-11 17:39:37 +03:00
|
|
|
"@tryghost/tpl": "0.1.18",
|
2022-09-27 04:31:35 +03:00
|
|
|
"@tryghost/validator": "0.1.29",
|
2022-08-11 17:39:37 +03:00
|
|
|
"jsonpath": "1.1.1",
|
|
|
|
"lodash": "4.17.21"
|
|
|
|
}
|
|
|
|
}
|