package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.4",
  15. "electron-typescript-definitions": "^1.2.11",
  16. "github": "^9.2.0",
  17. "husky": "^0.14.3",
  18. "minimist": "^1.2.0",
  19. "nugget": "^2.0.1",
  20. "remark-cli": "^4.0.0",
  21. "remark-preset-lint-markdown-style-guide": "^2.1.1",
  22. "request": "^2.68.0",
  23. "standard": "^10.0.0",
  24. "standard-markdown": "^4.0.0",
  25. "sumchecker": "^2.0.2",
  26. "temp": "^0.8.3"
  27. },
  28. "standard": {
  29. "ignore": [
  30. "/out",
  31. "/spec",
  32. "/vendor"
  33. ],
  34. "env": {
  35. "browser": true
  36. }
  37. },
  38. "private": true,
  39. "scripts": {
  40. "bootstrap": "python ./script/bootstrap.py",
  41. "browserify": "browserify",
  42. "bump-version": "./script/bump-version.py",
  43. "build": "python ./script/build.py -c D",
  44. "rebuild-test-modules": "python ./script/rebuild-test-modules.py",
  45. "clean": "python ./script/clean.py",
  46. "clean-build": "python ./script/clean.py --build",
  47. "coverage": "npm run instrument-code-coverage && npm test -- --use_instrumented_asar",
  48. "instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
  49. "lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-docs",
  50. "lint-js": "standard && cd spec && standard",
  51. "lint-cpp": "python ./script/cpplint.py",
  52. "lint-py": "python ./script/pylint.py",
  53. "lint-docs": "remark docs -qf && npm run lint-js-in-markdown && npm run create-typescript-definitions",
  54. "lint-js-in-markdown": "standard-markdown docs",
  55. "create-api-json": "electron-docs-linter docs --outfile=out/electron-api.json --version=$npm_package_version",
  56. "create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --in=out/electron-api.json --out=out/electron.d.ts",
  57. "merge-release": "node ./script/merge-release.js",
  58. "mock-release": "node ./script/ci-release-build.js",
  59. "preinstall": "node -e 'process.exit(0)'",
  60. "publish-to-npm": "node ./script/publish-to-npm.js",
  61. "prepack": "check-for-leaks",
  62. "prepush": "check-for-leaks",
  63. "prepare-release": "node ./script/prepare-release.js",
  64. "prerelease": "python ./script/bootstrap.py -v --dev && npm run build",
  65. "release": "node ./script/release.js",
  66. "repl": "python ./script/start.py --interactive",
  67. "start": "python ./script/start.py",
  68. "test": "python ./script/test.py"
  69. },
  70. "license": "MIT",
  71. "author": "Electron Community",
  72. "keywords": [
  73. "electron"
  74. ]
  75. }