package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "sumchecker",
  3. "version": "3.0.1",
  4. "author": "Mark Lee",
  5. "license": "Apache-2.0",
  6. "description": "Checksum validator",
  7. "main": "index.js",
  8. "types": "index.d.ts",
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/malept/sumchecker.git"
  12. },
  13. "keywords": [
  14. "checksum",
  15. "hash"
  16. ],
  17. "bugs": {
  18. "url": "https://github.com/malept/sumchecker/issues"
  19. },
  20. "homepage": "https://github.com/malept/sumchecker#readme",
  21. "engines": {
  22. "node": ">= 8.0"
  23. },
  24. "devDependencies": {
  25. "ava": "^2.2.0",
  26. "codecov": "^3.3.0",
  27. "eslint": "^6.1.0",
  28. "eslint-config-standard": "^14.0.0",
  29. "eslint-plugin-ava": "^9.0.0",
  30. "eslint-plugin-import": "^2.18.2",
  31. "eslint-plugin-node": "^10.0.0",
  32. "eslint-plugin-promise": "^4.0.1",
  33. "eslint-plugin-standard": "^4.0.0",
  34. "nyc": "^14.0.0",
  35. "tsd": "^0.11.0"
  36. },
  37. "dependencies": {
  38. "debug": "^4.1.0"
  39. },
  40. "scripts": {
  41. "ava": "ava test/index.js",
  42. "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
  43. "coverage": "nyc ava test/index.js",
  44. "lint": "eslint .",
  45. "test": "npm run lint && npm run ava && npm run tsd",
  46. "tsd": "tsd"
  47. },
  48. "ava": {
  49. "babel": false,
  50. "compileEnhancements": false
  51. },
  52. "eslintConfig": {
  53. "extends": [
  54. "eslint:recommended",
  55. "plugin:ava/recommended",
  56. "plugin:import/errors",
  57. "plugin:import/warnings",
  58. "plugin:node/recommended",
  59. "plugin:promise/recommended",
  60. "standard"
  61. ],
  62. "plugins": [
  63. "ava"
  64. ],
  65. "rules": {
  66. "node/no-unpublished-require": [
  67. "error",
  68. {
  69. "allowModules": [
  70. "ava"
  71. ]
  72. }
  73. ],
  74. "strict": [
  75. "error"
  76. ]
  77. }
  78. }
  79. }