forked from electron/forge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 4.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "electron-forge",
"version": "2.7.5",
"description": "A complete tool for building modern Electron applications",
"repository": "https://github.com/electron-userland/electron-forge",
"main": "dist/api/index.js",
"bin": {
"electron-forge": "dist/electron-forge.js",
"forge": "dist/electron-forge.js"
},
"scripts": {
"build": "gulp build",
"precommit": "npm run lint",
"commit": "git-cz",
"docs": "esdoc",
"install": "node tabtab-install.js",
"lint": "eslint src test gulpfile.babel.js",
"prepublish": "gulp build",
"pretest": "gulp build",
"test": "npm run lint && npm run test-all",
"test-coverage": "npm run lint && npm run test-all-coverage",
"test-all": "mocha test/**/*_spec*.js --compilers js:babel-register --timeout=300000",
"test-fast": "mocha test/**/*_spec.js --compilers js:babel-register --timeout=10000",
"test-all-coverage": "cross-env NODE_ENV=test nyc npm run test-all",
"test-fast-coverage": "cross-env NODE_ENV=test nyc npm run test-fast",
"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",
"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",
"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",
"watch": "gulp watch",
"watch-link": "nodemon --watch src --exec \"npm link\""
},
"author": "Samuel Attard",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-fetch-mock": "^1.0.0",
"commitizen": "^2.8.6",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"cz-customizable": "4.0.0",
"esdoc": "^0.5.1",
"esdoc-importpath-plugin": "^0.1.0",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha": "^4.8.0",
"fetch-mock": "^5.8.1",
"generate-changelog": "^1.0.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.7"
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"syntax-async-functions",
[
"transform-async-to-module-method",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
},
"nyc": {
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": false,
"instrument": false,
"cache": true
},
"dependencies": {
"babel-register": "^6.16.3",
"bluebird": "^3.4.6",
"colors": "^1.1.2",
"commander": "^2.9.0",
"debug": "^2.3.3",
"electron-forge-template-angular2": "^1.0.0",
"electron-forge-template-react": "^1.0.0",
"electron-forge-template-react-typescript": "^1.0.0",
"electron-forge-template-vue": "^1.0.0",
"electron-installer-dmg": "^0.2.0",
"electron-packager": "^8.5.0",
"electron-rebuild": "^1.5.7",
"electron-sudo": "malept/electron-sudo#fix-linux-sudo-detection",
"electron-windows-store": "^0.7.2",
"electron-winstaller": "^2.5.0",
"fs-promise": "^1.0.0",
"github": "^7.2.0",
"glob": "^7.1.1",
"inquirer": "^2.0.0",
"lodash.template": "^4.4.0",
"log-symbols": "^1.0.2",
"node-fetch": "^1.6.3",
"node-gyp": "^3.4.0",
"nugget": "^2.0.1",
"opn": "^4.0.2",
"ora": "^0.4.0",
"pify": "^2.3.0",
"resolve-package": "^1.0.1",
"semver": "^5.3.0",
"spawn-rx": "^2.0.7",
"sudo-prompt": "^6.2.1",
"tabtab": "^2.2.1",
"username": "^2.2.2",
"yarn-or-npm": "^2.0.2",
"zip-folder": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz.js"
}
},
"optionalDependencies": {
"electron-installer-debian": "^0.4.0",
"electron-installer-flatpak": "^0.4.0",
"electron-installer-redhat": "^0.3.0"
},
"engines": {
"node": ">= 6.0"
}
}