Ghost/ghost/package-json/package.json

32 lines
731 B
JSON
Raw Normal View History

{
"name": "@tryghost/package-json",
"private": true,
"version": "0.0.0",
"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": {
2023-02-17 01:15:50 +03:00
"c8": "7.13.0",
2022-12-12 16:20:22 +03:00
"mocha": "10.2.0",
"should": "13.2.3",
2023-04-05 15:53:35 +03:00
"sinon": "15.0.3",
"tmp": "0.2.1"
},
"dependencies": {
"@tryghost/errors": "1.2.24",
2023-04-07 14:14:57 +03:00
"@tryghost/tpl": "0.1.24",
2023-03-20 18:12:31 +03:00
"fs-extra": "11.1.1",
"lodash": "4.17.21"
}
}