package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "electron-download",
  3. "version": "3.3.0",
  4. "description": "download electron prebuilt binary zips from github releases",
  5. "main": "build/index.js",
  6. "bin": {
  7. "electron-download": "build/cli.js"
  8. },
  9. "scripts": {
  10. "prepublish": "babel --out-dir build lib",
  11. "lint": "eslint lib test",
  12. "unit-tests": "tape -r babel-register test/*.js",
  13. "test": "npm run unit-tests && npm run lint"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/electron-userland/electron-download.git"
  18. },
  19. "author": "max ogden",
  20. "license": "BSD-3-Clause",
  21. "bugs": {
  22. "url": "https://github.com/electron-userland/electron-download/issues"
  23. },
  24. "homepage": "https://github.com/electron-userland/electron-download#readme",
  25. "dependencies": {
  26. "debug": "^2.2.0",
  27. "fs-extra": "^0.30.0",
  28. "home-path": "^1.0.1",
  29. "minimist": "^1.2.0",
  30. "nugget": "^2.0.0",
  31. "path-exists": "^2.1.0",
  32. "rc": "^1.1.2",
  33. "semver": "^5.3.0",
  34. "sumchecker": "^1.2.0"
  35. },
  36. "devDependencies": {
  37. "babel-cli": "^6.14.0",
  38. "babel-preset-es2015": "^6.14.0",
  39. "babel-register": "^6.14.0",
  40. "eslint": "^3.2.0",
  41. "eslint-config-standard": "^5.2.0",
  42. "eslint-plugin-promise": "^2.0.0",
  43. "eslint-plugin-standard": "^2.0.0",
  44. "mkdirp": "^0.5.1",
  45. "tape": "^4.6.0",
  46. "temp": "^0.8.3"
  47. },
  48. "eslintConfig": {
  49. "extends": "standard",
  50. "parserOptions": {
  51. "sourceType": "script"
  52. },
  53. "rules": {
  54. "strict": [
  55. "error"
  56. ]
  57. }
  58. },
  59. "babel": {
  60. "presets": [
  61. "es2015"
  62. ]
  63. },
  64. "keywords": [],
  65. "_from": "electron-download@3.3.0",
  66. "_resolved": "http://registry.npm.taobao.org/electron-download/download/electron-download-3.3.0.tgz"
  67. }