package.json 2.8 KB

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