package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "electron-devtools-installer",
  3. "version": "4.0.0",
  4. "description": "An easy way to install Dev Tools extensions into Electron applications",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "prettier:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
  9. "prettier:write": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
  10. "compile": "tsc",
  11. "prepare": "npm run compile",
  12. "pretest-unit": "npm run compile",
  13. "test": "npm run prettier:check && npm run test-unit",
  14. "test-unit": "electron-mocha ./test/**/*_spec.ts --recursive --require ts-node/register --timeout 60000 -R spec-xunit-file -r test/setup.ts"
  15. },
  16. "keywords": [
  17. "electron",
  18. "dev",
  19. "tools"
  20. ],
  21. "author": {
  22. "name": "Samuel Attard",
  23. "email": "samuel.r.attard@gmail.com",
  24. "url": "https://www.samuelattard.com"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/MarshallOfSound/electron-devtools-installer/issues"
  28. },
  29. "license": "MIT",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/MarshallOfSound/electron-devtools-installer.git"
  33. },
  34. "devDependencies": {
  35. "@types/chai": "^4.2.14",
  36. "@types/chai-as-promised": "^7.1.3",
  37. "@types/chai-fs": "^2.0.2",
  38. "@types/mocha": "^8.2.0",
  39. "@types/node": "^18.0.0",
  40. "@types/semver": "^7.3.4",
  41. "chai": "^4.2.0",
  42. "chai-as-promised": "^7.1.1",
  43. "chai-fs": "chaijs/chai-fs",
  44. "electron": "33.3.0",
  45. "electron-mocha": "^13.0.1",
  46. "mocha-testdata": "^1.2.0",
  47. "prettier": "^3.4.2",
  48. "spec-xunit-file": "0.0.1-3",
  49. "ts-node": "^9.1.1",
  50. "typescript": "^5.7.2"
  51. },
  52. "dependencies": {
  53. "unzip-crx-3": "^0.2.0"
  54. },
  55. "files": [
  56. "LICENSE",
  57. "README.md",
  58. "dist"
  59. ]
  60. }