Ghost/ghost/members-csv/package.json
Daniel Lockyer 6e4437c7e4 Added c8 test coverage
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-08-20 10:28:07 +02:00

35 lines
771 B
JSON

{
"name": "@tryghost/members-csv",
"version": "1.1.3",
"repository": "https://github.com/TryGhost/Members/tree/master/packages/members-csv",
"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.8.0",
"mocha": "9.0.3",
"should": "13.2.3",
"sinon": "11.1.2"
},
"dependencies": {
"bluebird": "^3.7.2",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"papaparse": "5.3.1",
"pump": "^3.0.0"
}
}