UNPKG

5.07 kBJSONView Raw
1{
2 "name": "electron-forge",
3 "version": "4.2.0",
4 "description": "A complete tool for building modern Electron applications",
5 "repository": "https://github.com/electron-userland/electron-forge",
6 "main": "dist/api/index.js",
7 "bin": {
8 "electron-forge": "dist/electron-forge.js",
9 "forge": "dist/electron-forge.js",
10 "electron-forge-vscode-nix": "script/vscode.sh",
11 "electron-forge-vscode-win": "script/vscode.cmd"
12 },
13 "scripts": {
14 "build": "gulp build",
15 "precommit": "npm run lint",
16 "commit": "git-cz",
17 "docs": "esdoc",
18 "install": "node tabtab-install.js",
19 "lint": "eslint src test gulpfile.babel.js tabtab-install.js",
20 "prepublish": "gulp build",
21 "pretest": "gulp build",
22 "test": "npm run lint && npm run test-all",
23 "test-coverage": "npm run lint && npm run test-all-coverage",
24 "test-all": "mocha test/**/*_spec*.js test/**/**/*_spec*.js",
25 "test-fast": "mocha test/**/*_spec.js test/**/**/*_spec.js --timeout=10000",
26 "test-all-coverage": "cross-env NODE_ENV=test nyc npm run test-all",
27 "test-fast-coverage": "cross-env NODE_ENV=test nyc npm run test-fast",
28 "release:patch": "changelog -p && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version patch && git push origin && git push origin --tags",
29 "release:minor": "changelog -m && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version minor && git push origin && git push origin --tags",
30 "release:major": "changelog -M && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version major && git push origin && git push origin --tags",
31 "watch": "gulp watch",
32 "watch-link": "nodemon --watch src --exec \"npm link\""
33 },
34 "author": "Samuel Attard",
35 "license": "MIT",
36 "devDependencies": {
37 "asar": "^0.14.0",
38 "babel-eslint": "^7.0.0",
39 "babel-plugin-istanbul": "^4.0.0",
40 "babel-plugin-syntax-async-functions": "^6.13.0",
41 "babel-plugin-transform-async-to-module-method": "^6.16.0",
42 "babel-plugin-transform-runtime": "^6.15.0",
43 "babel-preset-env": "^1.6.0",
44 "chai": "^4.0.0",
45 "chai-as-promised": "^7.0.0",
46 "commitizen": "^2.8.6",
47 "coveralls": "^3.0.0",
48 "cross-env": "^5.0.0",
49 "cz-customizable": "^5.0.0",
50 "esdoc": "^1.0.1",
51 "esdoc-importpath-plugin": "^1.0.0",
52 "esdoc-standard-plugin": "^1.0.0",
53 "eslint": "^3.7.1",
54 "eslint-config-airbnb-base": "^8.0.0",
55 "eslint-plugin-import": "^1.16.0",
56 "eslint-plugin-mocha": "^4.8.0",
57 "fetch-mock": "^5.1.0",
58 "generate-changelog": "^1.0.2",
59 "gulp": "^3.9.1",
60 "gulp-babel": "^6.1.2",
61 "mocha": "^4.0.1",
62 "nodemon": "^1.11.0",
63 "nyc": "^11.0.0",
64 "proxyquire": "^1.7.10",
65 "sinon": "^4.1.2"
66 },
67 "babel": {
68 "sourceMaps": "inline",
69 "env": {
70 "test": {
71 "plugins": [
72 "istanbul"
73 ]
74 }
75 },
76 "presets": [
77 [
78 "env",
79 {
80 "targets": {
81 "node": "6"
82 }
83 }
84 ]
85 ],
86 "plugins": [
87 "transform-runtime",
88 "syntax-async-functions",
89 [
90 "transform-async-to-module-method",
91 {
92 "module": "bluebird",
93 "method": "coroutine"
94 }
95 ]
96 ]
97 },
98 "nyc": {
99 "reporter": [
100 "lcov",
101 "text-summary",
102 "html"
103 ],
104 "sourceMap": false,
105 "instrument": false,
106 "cache": true
107 },
108 "dependencies": {
109 "aws-sdk": "^2.9.0",
110 "babel-register": "^6.16.3",
111 "bluebird": "^3.4.6",
112 "colors": "^1.1.2",
113 "commander": "^2.9.0",
114 "cross-spawn-promise": "^0.10.1",
115 "debug": "^3.0.0",
116 "electron-forge-template-angular2": "^1.0.3",
117 "electron-forge-template-react": "^1.0.2",
118 "electron-forge-template-react-typescript": "^1.0.3",
119 "electron-forge-template-vue": "^1.0.2",
120 "electron-packager": "^10.1.0",
121 "electron-rebuild": "^1.6.0",
122 "form-data": "^2.1.4",
123 "fs-extra": "^4.0.0",
124 "github": "^12.0.3",
125 "glob": "^7.1.1",
126 "inquirer": "^4.0.0",
127 "lodash.merge": "^4.6.0",
128 "lodash.template": "^4.4.0",
129 "log-symbols": "^2.0.0",
130 "node-fetch": "^1.6.3",
131 "node-gyp": "^3.4.0",
132 "nugget": "^2.0.1",
133 "opn": "^5.0.0",
134 "ora": "^1.1.0",
135 "parse-author": "^2.0.0",
136 "pify": "^3.0.0",
137 "resolve-package": "^1.0.1",
138 "s3": "^4.4.0",
139 "semver": "^5.3.0",
140 "sudo-prompt": "^8.0.0",
141 "tabtab": "^2.2.1",
142 "username": "^3.0.0",
143 "yarn-or-npm": "^2.0.2",
144 "zip-folder": "^1.0.0"
145 },
146 "config": {
147 "commitizen": {
148 "path": "./node_modules/cz-customizable"
149 },
150 "cz-customizable": {
151 "config": "./.cz.js"
152 }
153 },
154 "optionalDependencies": {
155 "electron-installer-debian": "^0.7.1",
156 "electron-installer-dmg": "^0.2.0",
157 "electron-installer-flatpak": "^0.8.0",
158 "electron-installer-redhat": "^0.5.0",
159 "electron-windows-store": "^0.12.0",
160 "electron-winstaller": "^2.5.0"
161 },
162 "engines": {
163 "node": ">= 6.0"
164 }
165}