package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "electron",
  3. "version": "1.3.15",
  4. "devDependencies": {
  5. "asar": "^0.11.0",
  6. "electabul": "~0.0.4",
  7. "request": "*",
  8. "standard": "^7.1.2",
  9. "standard-markdown": "^1.2.1"
  10. },
  11. "optionalDependencies": {
  12. "runas": "^3.0.0"
  13. },
  14. "standard": {
  15. "ignore": [
  16. "/out",
  17. "/spec",
  18. "/vendor"
  19. ],
  20. "env": {
  21. "browser": true
  22. }
  23. },
  24. "private": true,
  25. "scripts": {
  26. "bootstrap": "python ./script/bootstrap.py",
  27. "build": "python ./script/build.py -c D",
  28. "clean": "python ./script/clean.py",
  29. "coverage": "npm run instrument-code-coverage && npm test -- --use-instrumented-asar",
  30. "instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
  31. "lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-docs",
  32. "lint-js": "standard && cd spec && standard",
  33. "lint-cpp": "python ./script/cpplint.py",
  34. "lint-py": "python ./script/pylint.py",
  35. "lint-docs": "standard-markdown docs",
  36. "preinstall": "node -e 'process.exit(0)'",
  37. "repl": "python ./script/start.py --interactive",
  38. "start": "python ./script/start.py",
  39. "test": "python ./script/test.py"
  40. }
  41. }