Ghost/ghost/pretty-cli/package.json
Daniel Lockyer f918398779 Added c8 test coverage to all packages
refs https://github.com/TryGhost/Team/issues/870

- using `c8` allows us to see test coverage for all packages in the repo
- this commit adds `c8` as a dev dependency and prepends the `mocha`
  command with `c8` so it runs on all tests
2021-07-14 11:26:06 +01:00

33 lines
765 B
JSON

{
"name": "@tryghost/pretty-cli",
"version": "1.2.18",
"description": "A mini-module to style a sywac instance in a standard way",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/pretty-cli",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"c8": "7.7.3",
"mocha": "9.0.0",
"should": "13.2.3",
"sinon": "11.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"sywac": "^1.3.0"
}
}