package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "electron",
  3. "version": "1.8.2-beta.2",
  4. "repository": "https://github.com/electron/electron",
  5. "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
  6. "devDependencies": {
  7. "asar": "^0.11.0",
  8. "browserify": "^13.1.0",
  9. "check-for-leaks": "^1.0.2",
  10. "colors": "^1.1.2",
  11. "dotenv-safe": "^4.0.4",
  12. "dugite": "^1.45.0",
  13. "electabul": "~0.0.4",
  14. "electron-docs-linter": "^2.3.3",
  15. "electron-typescript-definitions": "^1.2.10",
  16. "github": "^9.2.0",
  17. "husky": "^0.14.3",
  18. "minimist": "^1.2.0",
  19. "nugget": "^2.0.1",
  20. "request": "^2.68.0",
  21. "standard": "^8.4.0",
  22. "standard-markdown": "^4.0.0",
  23. "sumchecker": "^2.0.2",
  24. "temp": "^0.8.3"
  25. },
  26. "standard": {
  27. "ignore": [
  28. "/out",
  29. "/spec",
  30. "/vendor"
  31. ],
  32. "env": {
  33. "browser": true
  34. }
  35. },
  36. "private": true,
  37. "scripts": {
  38. "bootstrap": "python ./script/bootstrap.py",
  39. "browserify": "browserify",
  40. "bump-version": "./script/bump-version.py",
  41. "build": "python ./script/build.py -c D",
  42. "rebuild-test-modules": "python ./script/rebuild-test-modules.py",
  43. "clean": "python ./script/clean.py",
  44. "clean-build": "python ./script/clean.py --build",
  45. "coverage": "npm run instrument-code-coverage && npm test -- --use_instrumented_asar",
  46. "instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
  47. "lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-docs",
  48. "lint-js": "standard && cd spec && standard",
  49. "lint-cpp": "python ./script/cpplint.py",
  50. "lint-py": "python ./script/pylint.py",
  51. "lint-docs": "npm run lint-js-in-markdown && npm run create-typescript-definitions",
  52. "lint-js-in-markdown": "standard-markdown docs",
  53. "create-api-json": "electron-docs-linter docs --outfile=out/electron-api.json --version=$npm_package_version",
  54. "create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --in=out/electron-api.json --out=out/electron.d.ts",
  55. "merge-release": "node ./script/merge-release.js",
  56. "mock-release": "node ./script/ci-release-build.js",
  57. "preinstall": "node -e 'process.exit(0)'",
  58. "publish-to-npm": "node ./script/publish-to-npm.js",
  59. "prepack": "check-for-leaks",
  60. "prepush": "check-for-leaks",
  61. "prepare-release": "node ./script/prepare-release.js",
  62. "prerelease": "python ./script/bootstrap.py -v --dev && npm run build",
  63. "release": "node ./script/release.js",
  64. "repl": "python ./script/start.py --interactive",
  65. "start": "python ./script/start.py",
  66. "test": "python ./script/test.py"
  67. },
  68. "license": "MIT",
  69. "author": "Electron Community",
  70. "keywords": [
  71. "electron"
  72. ]
  73. }