package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "electron-download",
  3. "version": "4.1.1",
  4. "description": "download electron prebuilt binary zips from github releases",
  5. "main": "lib/index.js",
  6. "bin": {
  7. "electron-download": "lib/cli.js"
  8. },
  9. "scripts": {
  10. "lint": "eslint lib test",
  11. "unit-tests": "tape test/*.js",
  12. "test": "npm run unit-tests && npm run lint"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/electron-userland/electron-download.git"
  17. },
  18. "author": "max ogden",
  19. "license": "BSD-3-Clause",
  20. "bugs": {
  21. "url": "https://github.com/electron-userland/electron-download/issues"
  22. },
  23. "homepage": "https://github.com/electron-userland/electron-download#readme",
  24. "dependencies": {
  25. "debug": "^3.0.0",
  26. "env-paths": "^1.0.0",
  27. "fs-extra": "^4.0.1",
  28. "minimist": "^1.2.0",
  29. "nugget": "^2.0.1",
  30. "path-exists": "^3.0.0",
  31. "rc": "^1.2.1",
  32. "semver": "^5.4.1",
  33. "sumchecker": "^2.0.2"
  34. },
  35. "devDependencies": {
  36. "eslint": "^4.4.1",
  37. "eslint-config-standard": "^10.2.1",
  38. "eslint-plugin-import": "^2.7.0",
  39. "eslint-plugin-node": "^5.1.1",
  40. "eslint-plugin-promise": "^3.5.0",
  41. "eslint-plugin-standard": "^3.0.1",
  42. "sinon": "^6.1.4",
  43. "tape": "^4.8.0",
  44. "temp": "^0.8.3"
  45. },
  46. "eslintConfig": {
  47. "extends": "standard",
  48. "parserOptions": {
  49. "sourceType": "script"
  50. },
  51. "rules": {
  52. "strict": [
  53. "error"
  54. ],
  55. "prefer-const": [
  56. "error"
  57. ]
  58. }
  59. },
  60. "keywords": [],
  61. "engines": {
  62. "node": ">= 4.0"
  63. }
  64. }