-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
83 lines (83 loc) · 2.1 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
{
"name": "bozon",
"version": "1.3.5",
"description": "Command line tool for building, testing and publishing modern Electron applications",
"repository": {
"type": "git",
"url": "https://github.com/railsware/bozon.git"
},
"main": "lib/index.js",
"scripts": {
"dev": "npx webpack --watch",
"build": "npx webpack --mode production",
"lint": "npx eslint src",
"test": "npx jest",
"publish": "npm publish",
"release": "yarn build && yarn publish"
},
"keywords": [
"electron",
"desktop",
"application",
"cli",
"bozon"
],
"author": "Railsware, Alex Chaplinsky",
"license": "MIT",
"dependencies": {
"@electron/notarize": "^1.2.3",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"css-loader": "^6.7.1",
"ejs": "^3.1.8",
"electron": "^21.2.0",
"electron-builder": "^23.6.0",
"elliptic": "^6.5.4",
"got": "^11.8.3",
"inquirer": "^8.2.4",
"latest-version": "^5.1.0",
"lodash": "^4.17.21",
"merge-config": "^2.0.0",
"nodemon": "^2.0.20",
"style-loader": "^3.3.1",
"underscore.string": "^3.3.6",
"webpack": "^5.74.0",
"webpack-inject-plugin": "^1.5.5",
"webpack-merge": "^5.8.0"
},
"preferGlobal": true,
"bin": {
"bozon": "bin/bozon"
},
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.19.4",
"babel-jest": "^29.2.2",
"babel-loader": "^9.0.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^10.1.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"resolutions": {
"js-yaml": "^4.1.0",
"yargs-parser": "^20.2.9",
"lodash": "^4.17.21",
"minimatch": ">=3.0.5",
"terser": "^5.14.2",
"xmldom": ">=0.5.0"
}
}