package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "sumchecker",
  3. "version": "1.3.1",
  4. "author": "Mark Lee",
  5. "license": "Apache-2.0",
  6. "description": "Checksum validator",
  7. "main": "build.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. "devDependencies": {
  21. "babel-cli": "^6.14.0",
  22. "babel-preset-es2015": "^6.14.0",
  23. "babel-register": "^6.14.0",
  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. "es6-promise": "^4.0.5"
  35. },
  36. "scripts": {
  37. "ci": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Lcov reporters=Console && codeclimate-test-reporter < lcov.info",
  38. "oldNodeCI": "babel --out-file tests/transpiled.js tests/index.js && intern-client config=tests/intern suites=tests/transpiled reporters=Console",
  39. "prepublish": "babel --out-file build.js index.js",
  40. "test": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Pretty"
  41. },
  42. "eslintConfig": {
  43. "env": {
  44. "amd": true
  45. },
  46. "extends": "standard",
  47. "parserOptions": {
  48. "sourceType": "script"
  49. },
  50. "rules": {
  51. "strict": [
  52. "error"
  53. ]
  54. }
  55. },
  56. "babel": {
  57. "presets": [
  58. "es2015"
  59. ]
  60. },
  61. "_from": "sumchecker@1.3.1",
  62. "_resolved": "http://registry.npm.taobao.org/sumchecker/download/sumchecker-1.3.1.tgz"
  63. }