create-windowless-app 7.9.2 → 7.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-windowless-app",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.9",
|
|
4
4
|
"description": "Create a windowless NodeJS app",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"prepare": "git config --get core.hookspath || husky install",
|
|
12
12
|
"prebuild": "npm run test",
|
|
13
|
-
"build": "npm run
|
|
13
|
+
"build": "npm run build:no-test",
|
|
14
|
+
"build:no-test": "npm run tsc && npm run add-shebang && npm run package",
|
|
14
15
|
"test": "npm run eslint && npm run type-check && npm run jest",
|
|
15
16
|
"eslint": "eslint src/ test/ templates/",
|
|
16
17
|
"eslint:fix": "npm run eslint -- --fix",
|
|
@@ -56,48 +57,48 @@
|
|
|
56
57
|
"@types/cross-spawn": "6.0.2",
|
|
57
58
|
"@types/fs-extra": "9.0.13",
|
|
58
59
|
"@types/inquirer": "8.1.3",
|
|
59
|
-
"@types/jest": "27.0.
|
|
60
|
+
"@types/jest": "27.0.3",
|
|
60
61
|
"@types/mock-fs": "4.13.1",
|
|
61
|
-
"@types/node": "14.17.
|
|
62
|
+
"@types/node": "14.17.34",
|
|
62
63
|
"@types/node-notifier": "8.0.1",
|
|
63
64
|
"@types/request": "2.48.7",
|
|
64
65
|
"@types/semver": "7.3.9",
|
|
65
66
|
"@types/semver-compare": "1.0.1",
|
|
66
|
-
"@types/uuid": "8.3.
|
|
67
|
+
"@types/uuid": "8.3.3",
|
|
67
68
|
"@types/validate-npm-package-name": "3.0.3",
|
|
68
69
|
"@types/winston": "2.4.4",
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
70
|
-
"@typescript-eslint/parser": "5.
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "5.4.0",
|
|
71
|
+
"@typescript-eslint/parser": "5.4.0",
|
|
71
72
|
"add-shebang": "0.1.0",
|
|
72
|
-
"copy-webpack-plugin": "
|
|
73
|
+
"copy-webpack-plugin": "10.0.0",
|
|
73
74
|
"cross-env": "7.0.3",
|
|
74
75
|
"del": "6.0.0",
|
|
75
|
-
"eslint": "8.
|
|
76
|
-
"eslint-plugin-import": "2.25.
|
|
77
|
-
"eslint-plugin-jest": "25.
|
|
76
|
+
"eslint": "8.3.0",
|
|
77
|
+
"eslint-plugin-import": "2.25.3",
|
|
78
|
+
"eslint-plugin-jest": "25.3.0",
|
|
78
79
|
"eslint-plugin-node": "11.1.0",
|
|
79
80
|
"eslint-plugin-security": "1.4.0",
|
|
80
81
|
"global-npm": "0.5.0",
|
|
81
82
|
"husky": "7.0.4",
|
|
82
83
|
"jest": "27.3.1",
|
|
83
|
-
"lint-staged": "
|
|
84
|
-
"mock-fs": "5.1.
|
|
84
|
+
"lint-staged": "12.1.2",
|
|
85
|
+
"mock-fs": "5.1.2",
|
|
85
86
|
"mocked-env": "1.3.5",
|
|
86
87
|
"node-notifier": "10.0.0",
|
|
87
|
-
"prettier": "2.
|
|
88
|
+
"prettier": "2.5.0",
|
|
88
89
|
"rimraf": "3.0.2",
|
|
89
90
|
"ts-jest": "27.0.7",
|
|
90
91
|
"ts-node": "10.4.0",
|
|
91
|
-
"typescript": "4.
|
|
92
|
+
"typescript": "4.5.2",
|
|
92
93
|
"uuid": "8.3.2",
|
|
93
|
-
"webpack": "5.
|
|
94
|
+
"webpack": "5.64.4",
|
|
94
95
|
"winston": "3.3.3"
|
|
95
96
|
},
|
|
96
97
|
"dependencies": {
|
|
97
98
|
"chalk": "4.1.2",
|
|
98
99
|
"cross-spawn": "7.0.3",
|
|
99
100
|
"fs-extra": "10.0.0",
|
|
100
|
-
"got": "11.8.
|
|
101
|
+
"got": "11.8.3",
|
|
101
102
|
"inquirer": "8.2.0",
|
|
102
103
|
"semver": "7.3.5",
|
|
103
104
|
"semver-compare": "1.0.0",
|