package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "sumchecker",
  3. "version": "2.0.2",
  4. "author": "Mark Lee",
  5. "license": "Apache-2.0",
  6. "description": "Checksum validator",
  7. "main": "index.js",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/malept/sumchecker.git"
  11. },
  12. "keywords": [
  13. "checksum",
  14. "hash"
  15. ],
  16. "bugs": {
  17. "url": "https://github.com/malept/sumchecker/issues"
  18. },
  19. "homepage": "https://github.com/malept/sumchecker#readme",
  20. "engines": {
  21. "node": ">= 4.0"
  22. },
  23. "devDependencies": {
  24. "codeclimate-test-reporter": "^0.4.0",
  25. "eslint": "^3.3.1",
  26. "eslint-config-standard": "^6.0.0-beta.3",
  27. "eslint-plugin-promise": "^3.3.0",
  28. "eslint-plugin-standard": "^2.0.0",
  29. "intern": "^3.3.1",
  30. "nyc": "^8.1.0"
  31. },
  32. "dependencies": {
  33. "debug": "^2.2.0"
  34. },
  35. "scripts": {
  36. "ci": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Lcov reporters=Console && codeclimate-test-reporter < lcov.info",
  37. "test": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Pretty"
  38. },
  39. "eslintConfig": {
  40. "env": {
  41. "amd": true
  42. },
  43. "extends": "standard",
  44. "parserOptions": {
  45. "sourceType": "script"
  46. },
  47. "rules": {
  48. "strict": [
  49. "error"
  50. ]
  51. }
  52. }
  53. }