UNPKG

1.47 kBJSONView Raw
1{
2 "name": "electron-download-tf",
3 "version": "4.3.4",
4 "description": "download electron prebuilt binary zips from github releases",
5 "main": "lib/index.js",
6 "bin": {
7 "electron-download": "lib/cli.js"
8 },
9 "scripts": {
10 "lint": "eslint lib test",
11 "unit-tests": "tape test/*.js",
12 "test": "npm run unit-tests && npm run lint"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+https://github.com/electron-userland/electron-download.git"
17 },
18 "author": "max ogden",
19 "license": "BSD-3-Clause",
20 "bugs": {
21 "url": "https://github.com/electron-userland/electron-download/issues"
22 },
23 "homepage": "https://github.com/electron-userland/electron-download#readme",
24 "dependencies": {
25 "debug": "^3.0.0",
26 "env-paths": "^1.0.0",
27 "fs-extra": "^4.0.1",
28 "minimist": "^1.2.0",
29 "nugget": "^2.0.1",
30 "path-exists": "^3.0.0",
31 "rc": "^1.2.1",
32 "semver": "^5.4.1",
33 "sumchecker": "^2.0.2"
34 },
35 "devDependencies": {
36 "eslint": "^4.5.0",
37 "eslint-config-standard": "^10.2.1",
38 "eslint-plugin-import": "^2.7.0",
39 "eslint-plugin-node": "^5.1.1",
40 "eslint-plugin-promise": "^3.5.0",
41 "eslint-plugin-standard": "^3.0.1",
42 "tape": "^4.8.0",
43 "temp": "^0.8.3"
44 },
45 "eslintConfig": {
46 "extends": "standard",
47 "parserOptions": {
48 "sourceType": "script"
49 },
50 "rules": {
51 "strict": [
52 "error"
53 ]
54 }
55 },
56 "keywords": [],
57 "engines": {
58 "node": ">= 4.0"
59 }
60}