package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@electron/asar",
  3. "description": "Creating Electron app packages",
  4. "version": "3.2.9",
  5. "main": "./lib/asar.js",
  6. "types": "./lib/index.d.ts",
  7. "bin": {
  8. "asar": "./bin/asar.js"
  9. },
  10. "files": [
  11. "bin",
  12. "lib",
  13. "lib/index.d.ts"
  14. ],
  15. "engines": {
  16. "node": ">=10.12.0"
  17. },
  18. "license": "MIT",
  19. "homepage": "https://github.com/electron/asar",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/electron/asar.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/electron/asar/issues"
  26. },
  27. "scripts": {
  28. "mocha": "xvfb-maybe electron-mocha --reporter spec && mocha --reporter spec",
  29. "test": "npm run lint && npm run mocha",
  30. "lint": "tsd && standard",
  31. "standard": "standard",
  32. "tsd": "tsd"
  33. },
  34. "standard": {
  35. "env": {
  36. "mocha": true
  37. },
  38. "globals": [
  39. "BigInt"
  40. ]
  41. },
  42. "tsd": {
  43. "directory": "test"
  44. },
  45. "dependencies": {
  46. "commander": "^5.0.0",
  47. "glob": "^7.1.6",
  48. "minimatch": "^3.0.4"
  49. },
  50. "devDependencies": {
  51. "electron": "^22.0.0",
  52. "electron-mocha": "^11.0.2",
  53. "lodash": "^4.17.15",
  54. "mocha": "^10.1.0",
  55. "rimraf": "^3.0.2",
  56. "standard": "^14.3.3",
  57. "tsd": "^0.25.0",
  58. "xvfb-maybe": "^0.2.1"
  59. }
  60. }