Ghost/ghost/limit-service/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
749 B
JSON

{
"name": "@tryghost/limit-service",
"version": "0.6.1",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/limit-service",
"author": "Ghost Foundation",
"license": "MIT",
"main": "./lib/limit-service.js",
"exports": "./lib/limit-service.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": {
"lodash": "^4.17.21",
"luxon": "^1.26.0"
}
}