package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@nuxt/opencollective",
  3. "version": "0.3.3",
  4. "repository": "nuxt-contrib/opencollective",
  5. "license": "MIT",
  6. "main": "dist/index.js",
  7. "bin": "bin/opencollective.js",
  8. "files": [
  9. "bin",
  10. "dist"
  11. ],
  12. "scripts": {
  13. "build": "bili -t node --format cjs src/index.js",
  14. "lint": "eslint src test",
  15. "prepublish": "yarn build",
  16. "release": "standard-version && git push --follow-tags && npm publish",
  17. "test": "yarn lint && yarn test:coverage",
  18. "test:ava": "nyc ava --verbose",
  19. "test:coverage": "nyc --reporter=lcov --reporter=html ava"
  20. },
  21. "ava": {
  22. "require": [
  23. "jiti/register"
  24. ]
  25. },
  26. "dependencies": {
  27. "chalk": "^4.1.0",
  28. "consola": "^2.15.0",
  29. "node-fetch": "^2.6.7"
  30. },
  31. "devDependencies": {
  32. "@commitlint/cli": "^17.0.0",
  33. "@commitlint/config-conventional": "^17.0.0",
  34. "@nuxtjs/eslint-config": "^10.0.0",
  35. "ava": "^4.2.0",
  36. "bili": "latest",
  37. "eslint": "^8.15.0",
  38. "fetch-mock": "^9.11.0",
  39. "jiti": "^1.13.0",
  40. "nyc": "latest",
  41. "sinon": "^14.0.0",
  42. "standard-version": "^9.5.0"
  43. },
  44. "engines": {
  45. "node": ">=8.0.0",
  46. "npm": ">=5.0.0"
  47. }
  48. }