diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
commit | 703e03aba33f234712206769f57717ba7d92d23d (patch) | |
tree | 0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/electron-download/package.json | |
parent | ab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff) | |
download | FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst |
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/electron-download/package.json')
-rw-r--r-- | node_modules/electron-download/package.json | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/node_modules/electron-download/package.json b/node_modules/electron-download/package.json new file mode 100644 index 0000000..86dc5cb --- /dev/null +++ b/node_modules/electron-download/package.json @@ -0,0 +1,64 @@ +{ + "name": "electron-download", + "version": "4.1.1", + "description": "download electron prebuilt binary zips from github releases", + "main": "lib/index.js", + "bin": { + "electron-download": "lib/cli.js" + }, + "scripts": { + "lint": "eslint lib test", + "unit-tests": "tape test/*.js", + "test": "npm run unit-tests && npm run lint" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/electron-userland/electron-download.git" + }, + "author": "max ogden", + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/electron-userland/electron-download/issues" + }, + "homepage": "https://github.com/electron-userland/electron-download#readme", + "dependencies": { + "debug": "^3.0.0", + "env-paths": "^1.0.0", + "fs-extra": "^4.0.1", + "minimist": "^1.2.0", + "nugget": "^2.0.1", + "path-exists": "^3.0.0", + "rc": "^1.2.1", + "semver": "^5.4.1", + "sumchecker": "^2.0.2" + }, + "devDependencies": { + "eslint": "^4.4.1", + "eslint-config-standard": "^10.2.1", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-node": "^5.1.1", + "eslint-plugin-promise": "^3.5.0", + "eslint-plugin-standard": "^3.0.1", + "sinon": "^6.1.4", + "tape": "^4.8.0", + "temp": "^0.8.3" + }, + "eslintConfig": { + "extends": "standard", + "parserOptions": { + "sourceType": "script" + }, + "rules": { + "strict": [ + "error" + ], + "prefer-const": [ + "error" + ] + } + }, + "keywords": [], + "engines": { + "node": ">= 4.0" + } +} |