package.json 580 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "scripts": {
  3. "cache-clean": "rm -rf ~/.electron && rm -rf dist",
  4. "postinstall": "node install.js",
  5. "pretest": "npm run cache-clean",
  6. "test": "standard"
  7. },
  8. "bin": {
  9. "electron": "cli.js"
  10. },
  11. "main": "index.js",
  12. "types": "electron.d.ts",
  13. "dependencies": {
  14. "@types/node": "^8.0.24",
  15. "electron-download": "^4.1.0",
  16. "extract-zip": "^1.0.3"
  17. },
  18. "devDependencies": {
  19. "home-path": "^0.1.1",
  20. "path-exists": "^2.0.0",
  21. "standard": "^5.4.1"
  22. },
  23. "directories": {
  24. "test": "test"
  25. },
  26. "engines": {
  27. "node": ">= 4.0"
  28. }
  29. }