UNPKG

4.29 kBJSONView Raw
1{
2 "name": "electron-forge",
3 "version": "2.4.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 },
11 "scripts": {
12 "build": "gulp build",
13 "precommit": "npm run lint",
14 "commit": "git-cz",
15 "docs": "esdoc",
16 "lint": "eslint src test gulpfile.babel.js",
17 "prepublish": "gulp build",
18 "pretest": "gulp build",
19 "test": "npm run lint && npm run test-all",
20 "test-coverage": "npm run lint && npm run test-all-coverage",
21 "test-all": "mocha test/**/*_spec*.js --compilers js:babel-register --timeout=300000",
22 "test-fast": "mocha test/**/*_spec.js --compilers js:babel-register --timeout=10000",
23 "test-all-coverage": "cross-env NODE_ENV=test nyc npm run test-all",
24 "test-fast-coverage": "cross-env NODE_ENV=test nyc npm run test-fast",
25 "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",
26 "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",
27 "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",
28 "watch": "gulp watch",
29 "watch-link": "nodemon --watch src --exec \"npm link\""
30 },
31 "author": "Samuel Attard",
32 "license": "MIT",
33 "devDependencies": {
34 "babel-eslint": "^7.0.0",
35 "babel-plugin-istanbul": "^3.0.0",
36 "babel-plugin-syntax-async-functions": "^6.13.0",
37 "babel-plugin-transform-async-to-module-method": "^6.16.0",
38 "babel-plugin-transform-runtime": "^6.15.0",
39 "babel-preset-es2015": "^6.16.0",
40 "chai": "^3.5.0",
41 "commitizen": "^2.8.6",
42 "coveralls": "^2.11.15",
43 "cross-env": "^3.1.3",
44 "cz-customizable": "4.0.0",
45 "esdoc": "^0.5.1",
46 "esdoc-importpath-plugin": "^0.1.0",
47 "eslint": "^3.7.1",
48 "eslint-config-airbnb-base": "^8.0.0",
49 "eslint-plugin-import": "^1.16.0",
50 "generate-changelog": "^1.0.2",
51 "gulp": "^3.9.1",
52 "gulp-babel": "^6.1.2",
53 "mocha": "^3.2.0",
54 "nodemon": "^1.11.0",
55 "nyc": "^10.0.0",
56 "sinon": "^1.17.7"
57 },
58 "babel": {
59 "env": {
60 "test": {
61 "plugins": [
62 "istanbul"
63 ]
64 }
65 },
66 "presets": [
67 "es2015"
68 ],
69 "plugins": [
70 "transform-runtime",
71 "syntax-async-functions",
72 [
73 "transform-async-to-module-method",
74 {
75 "module": "bluebird",
76 "method": "coroutine"
77 }
78 ]
79 ]
80 },
81 "nyc": {
82 "reporter": [
83 "lcov",
84 "text-summary",
85 "html"
86 ],
87 "sourceMap": false,
88 "instrument": false,
89 "cache": true
90 },
91 "dependencies": {
92 "babel-register": "^6.16.3",
93 "bluebird": "^3.4.6",
94 "colors": "^1.1.2",
95 "commander": "^2.9.0",
96 "debug": "^2.3.3",
97 "electron-installer-dmg": "^0.1.2",
98 "electron-packager": "^8.4.0",
99 "electron-sudo": "malept/electron-sudo#fix-linux-sudo-detection",
100 "electron-windows-store": "^0.6.3",
101 "electron-winstaller": "^2.5.0",
102 "fs-promise": "^1.0.0",
103 "github": "^7.2.0",
104 "glob": "^7.1.1",
105 "inquirer": "^2.0.0",
106 "lodash.template": "^4.4.0",
107 "log-symbols": "^1.0.2",
108 "node-fetch": "^1.6.3",
109 "node-gyp": "^3.4.0",
110 "nugget": "^2.0.1",
111 "opn": "^4.0.2",
112 "ora": "^0.4.0",
113 "pify": "^2.3.0",
114 "resolve-package": "^1.0.1",
115 "semver": "^5.3.0",
116 "sudo-prompt": "^6.2.1",
117 "spawn-rx": "^2.0.7",
118 "username": "^2.2.2",
119 "yarn-or-npm": "^2.0.2",
120 "zip-folder": "^1.0.0"
121 },
122 "config": {
123 "commitizen": {
124 "path": "./node_modules/cz-customizable"
125 },
126 "cz-customizable": {
127 "config": "./.cz.js"
128 }
129 },
130 "optionalDependencies": {
131 "electron-installer-debian": "^0.4.0",
132 "electron-installer-flatpak": "^0.4.0",
133 "electron-installer-redhat": "^0.3.0"
134 },
135 "engines": {
136 "node": ">= 6.0"
137 }
138}