package.json 854 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "name": "electron",
  30. "version": "3.0.0",
  31. "repository": "https://github.com/electron/electron",
  32. "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
  33. "license": "MIT",
  34. "author": "Electron Community",
  35. "keywords": [
  36. "electron"
  37. ]
  38. }