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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "electron-installer-common",
  3. "version": "0.10.3",
  4. "description": "Common functionality for creating distributable Electron apps",
  5. "author": "Mark Lee",
  6. "license": "Apache-2.0",
  7. "main": "src/index.js",
  8. "types": "src/index.d.ts",
  9. "scripts": {
  10. "ava": "ava",
  11. "codecov": "nyc report --reporter=text-lcov | codecov --disable=gcov --pipe --env=CI_OS,NODE_VERSION",
  12. "coverage": "nyc ava",
  13. "lint": "npm run lint:js && npm run lint:ts",
  14. "lint:js": "eslint .",
  15. "lint:ts": "eslint --config .eslintrc.typescript.js --ext .ts .",
  16. "test": "npm run lint && tsd && ava",
  17. "tsd": "tsd"
  18. },
  19. "repository": "electron-userland/electron-installer-common",
  20. "keywords": [
  21. "electron",
  22. "installer"
  23. ],
  24. "files": [
  25. "NEWS.md",
  26. "src"
  27. ],
  28. "devDependencies": {
  29. "@typescript-eslint/eslint-plugin": "^3.0.0",
  30. "@typescript-eslint/parser": "^3.0.0",
  31. "ava": "^3.0.0",
  32. "codecov": "^3.5.0",
  33. "eslint": "^7.1.0",
  34. "eslint-config-standard": "^14.0.0",
  35. "eslint-plugin-ava": "^11.0.0",
  36. "eslint-plugin-import": "^2.14.0",
  37. "eslint-plugin-node": "^11.0.0",
  38. "eslint-plugin-promise": "^4.0.1",
  39. "eslint-plugin-standard": "^4.0.0",
  40. "nyc": "^15.0.0",
  41. "sinon": "^9.0.0",
  42. "tsd": "^0.13.1",
  43. "typescript": "^4.0.2"
  44. },
  45. "dependencies": {
  46. "@malept/cross-spawn-promise": "^1.0.0",
  47. "asar": "^3.0.0",
  48. "debug": "^4.1.1",
  49. "fs-extra": "^9.0.0",
  50. "glob": "^7.1.4",
  51. "lodash": "^4.17.15",
  52. "parse-author": "^2.0.0",
  53. "semver": "^7.1.1",
  54. "tmp-promise": "^3.0.2"
  55. },
  56. "engines": {
  57. "node": ">= 10.0.0"
  58. },
  59. "eslintConfig": {
  60. "extends": [
  61. "eslint:recommended",
  62. "plugin:ava/recommended",
  63. "plugin:import/errors",
  64. "plugin:import/warnings",
  65. "plugin:node/recommended",
  66. "plugin:promise/recommended",
  67. "standard"
  68. ]
  69. },
  70. "funding": {
  71. "url": "https://github.com/electron-userland/electron-installer-common?sponsor=1"
  72. },
  73. "tsd": {
  74. "directory": "test"
  75. },
  76. "optionalDependencies": {
  77. "@types/fs-extra": "^9.0.1"
  78. }
  79. }