You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "asar",
  3. "description": "Creating Electron app packages",
  4. "version": "3.2.0",
  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. "chromium-pickle-js": "^0.2.0",
  47. "commander": "^5.0.0",
  48. "glob": "^7.1.6",
  49. "minimatch": "^3.0.4"
  50. },
  51. "optionalDependencies": {
  52. "@types/glob": "^7.1.1"
  53. },
  54. "devDependencies": {
  55. "@continuous-auth/semantic-release-npm": "^2.0.0",
  56. "@semantic-release/changelog": "^5.0.0",
  57. "electron": "^5.0.0",
  58. "electron-mocha": "^8.2.1",
  59. "lodash": "^4.17.15",
  60. "mocha": "^7.1.1",
  61. "rimraf": "^3.0.2",
  62. "semantic-release": "^17.0.4",
  63. "standard": "^14.3.3",
  64. "tsd": "^0.11.0",
  65. "xvfb-maybe": "^0.2.1"
  66. }
  67. }