package.json 928 B

12345678910111213141516171819202122232425262728293031323334353637
  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": "^3.0.1",
  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. "name": "electron",
  27. "version": "2.0.9",
  28. "repository": "https://github.com/electron/electron",
  29. "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
  30. "license": "MIT",
  31. "author": "Electron Community",
  32. "keywords": [
  33. "electron"
  34. ],
  35. "_from": "electron@2.0.9",
  36. "_resolved": "http://registry.npm.taobao.org/electron/download/electron-2.0.9.tgz"
  37. }