UNPKG

5.01 kBJSONView Raw
1{
2 "name": "electron-forge",
3 "version": "4.1.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",
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 --compilers js:babel-register --timeout=300000",
25 "test-fast": "mocha test/**/*_spec.js test/**/**/*_spec.js --compilers js:babel-register --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.13.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-es2015": "^6.16.0",
44 "chai": "^4.0.0",
45 "chai-as-promised": "^7.0.0",
46 "commitizen": "^2.8.6",
47 "coveralls": "^2.11.15",
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": "^3.2.0",
62 "nodemon": "^1.11.0",
63 "nyc": "^11.0.0",
64 "proxyquire": "^1.7.10",
65 "sinon": "^3.0.0"
66 },
67 "babel": {
68 "sourceMaps": "inline",
69 "env": {
70 "test": {
71 "plugins": [
72 "istanbul"
73 ]
74 }
75 },
76 "presets": [
77 "es2015"
78 ],
79 "plugins": [
80 "transform-runtime",
81 "syntax-async-functions",
82 [
83 "transform-async-to-module-method",
84 {
85 "module": "bluebird",
86 "method": "coroutine"
87 }
88 ]
89 ]
90 },
91 "nyc": {
92 "reporter": [
93 "lcov",
94 "text-summary",
95 "html"
96 ],
97 "sourceMap": false,
98 "instrument": false,
99 "cache": true
100 },
101 "dependencies": {
102 "aws-sdk": "^2.9.0",
103 "babel-register": "^6.16.3",
104 "bluebird": "^3.4.6",
105 "colors": "^1.1.2",
106 "commander": "^2.9.0",
107 "cross-spawn-promise": "^0.10.1",
108 "debug": "^3.0.0",
109 "electron-forge-template-angular2": "^1.0.3",
110 "electron-forge-template-react": "^1.0.2",
111 "electron-forge-template-react-typescript": "^1.0.3",
112 "electron-forge-template-vue": "^1.0.2",
113 "electron-packager": "^9.1.0",
114 "electron-rebuild": "^1.6.0",
115 "form-data": "^2.1.4",
116 "fs-extra": "^4.0.0",
117 "github": "^11.0.0",
118 "glob": "^7.1.1",
119 "inquirer": "^3.0.1",
120 "lodash.template": "^4.4.0",
121 "log-symbols": "^2.0.0",
122 "node-fetch": "^1.6.3",
123 "node-gyp": "^3.4.0",
124 "nugget": "^2.0.1",
125 "opn": "^5.0.0",
126 "ora": "^1.1.0",
127 "parse-author": "^2.0.0",
128 "pify": "^3.0.0",
129 "resolve-package": "^1.0.1",
130 "s3": "^4.4.0",
131 "semver": "^5.3.0",
132 "sudo-prompt": "^7.0.0",
133 "tabtab": "^2.2.1",
134 "username": "^3.0.0",
135 "yarn-or-npm": "^2.0.2",
136 "zip-folder": "^1.0.0"
137 },
138 "config": {
139 "commitizen": {
140 "path": "./node_modules/cz-customizable"
141 },
142 "cz-customizable": {
143 "config": "./.cz.js"
144 }
145 },
146 "optionalDependencies": {
147 "electron-installer-debian": "^0.5.0",
148 "electron-installer-dmg": "^0.2.0",
149 "electron-installer-flatpak": "^0.6.0",
150 "electron-installer-redhat": "^0.5.0",
151 "electron-windows-store": "^0.12.0",
152 "electron-winstaller": "^2.5.0"
153 },
154 "engines": {
155 "node": ">= 6.0"
156 }
157}