package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@electron/osx-sign",
  3. "version": "1.0.4",
  4. "description": "Codesign Electron macOS apps",
  5. "main": "dist/cjs/index.js",
  6. "module": "dist/esm/index.js",
  7. "files": [
  8. "dist",
  9. "entitlements",
  10. "README.md",
  11. "LICENSE",
  12. "bin"
  13. ],
  14. "bin": {
  15. "electron-osx-flat": "bin/electron-osx-flat.js",
  16. "electron-osx-sign": "bin/electron-osx-sign.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/electron/osx-sign.git"
  21. },
  22. "author": "electron",
  23. "license": "BSD-2-Clause",
  24. "bugs": {
  25. "url": "https://github.com/electron/osx-sign/issues"
  26. },
  27. "homepage": "https://github.com/electron/osx-sign",
  28. "dependencies": {
  29. "compare-version": "^0.1.2",
  30. "debug": "^4.3.4",
  31. "fs-extra": "^10.0.0",
  32. "isbinaryfile": "^4.0.8",
  33. "minimist": "^1.2.6",
  34. "plist": "^3.0.5"
  35. },
  36. "devDependencies": {
  37. "@types/compare-version": "^0.1.31",
  38. "@types/debug": "^4.1.7",
  39. "@types/fs-extra": "^9.0.13",
  40. "@types/node": "^16.11.6",
  41. "@types/plist": "^3.0.2",
  42. "@typescript-eslint/eslint-plugin": "^5.3.0",
  43. "@typescript-eslint/parser": "^5.3.0",
  44. "electron-download": "^4.1.0",
  45. "eslint": "^8.1.0",
  46. "eslint-config-eslint": "^7.0.0",
  47. "eslint-config-standard": "^16.0.3",
  48. "eslint-plugin-import": "^2.25.2",
  49. "eslint-plugin-node": "^11.1.0",
  50. "eslint-plugin-promise": "^5.1.1",
  51. "extract-zip": "^2.0.1",
  52. "mkdirp": "^1.0.4",
  53. "rimraf": "^3.0.2",
  54. "run-series": "^1.1.9",
  55. "run-waterfall": "^1.1.7",
  56. "standard": "^16.0.4",
  57. "tape": "^4.7.1",
  58. "typescript": "^4.4.4"
  59. },
  60. "scripts": {
  61. "build": "tsc && tsc -p tsconfig.esm.json",
  62. "lint": "eslint --ext .ts,.js src bin test",
  63. "pretest": "rimraf test/work",
  64. "test": "yarn lint && tape test",
  65. "prepublishOnly": "yarn build"
  66. },
  67. "standard": {
  68. "ignore": [
  69. "test/work"
  70. ]
  71. },
  72. "engines": {
  73. "node": ">=12.0.0"
  74. }
  75. }