@saasquatch/express-boilerplate 1.1.0 → 1.1.2-0
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 +14 -12
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasquatch/express-boilerplate",
|
|
3
|
-
"version": "1.1.0",
|
|
3
|
+
"version": "1.1.2-0",
|
|
4
|
+
"description": "Boilerplate middleware and functions for building Express apps on Kubernetes",
|
|
5
|
+
"main": "dist/index.js",
|
|
4
6
|
"private": false,
|
|
5
7
|
"publishConfig": {
|
|
8
|
+
"provenance": true,
|
|
6
9
|
"access": "public"
|
|
7
10
|
},
|
|
8
|
-
"description": "Boilerplate middleware and functions for building Express apps on Kubernetes",
|
|
9
|
-
"prettier": {},
|
|
10
11
|
"author": "ReferralSaaSquatch.com, Inc.",
|
|
12
|
+
"license": "MIT",
|
|
11
13
|
"engines": {
|
|
12
|
-
"node": "^18 || ^20"
|
|
14
|
+
"node": "^18 || ^20 || ^22"
|
|
13
15
|
},
|
|
14
16
|
"files": [
|
|
15
17
|
"dist/*.js",
|
|
@@ -19,21 +21,23 @@
|
|
|
19
21
|
"type": "git",
|
|
20
22
|
"url": "git+https://github.com/saasquatch/program-tools.git"
|
|
21
23
|
},
|
|
22
|
-
"license": "MIT",
|
|
23
24
|
"bugs": {
|
|
24
25
|
"url": "https://github.com/saasquatch/program-tools/issues"
|
|
25
26
|
},
|
|
26
27
|
"homepage": "https://github.com/saasquatch/program-tools/packages/express-boilerplate#readme",
|
|
27
|
-
"main": "dist/index.js",
|
|
28
28
|
"scripts": {
|
|
29
29
|
"test": "npm run build && node --enable-source-maps node_modules/jest/bin/jest.js --roots dist/tests --coverage",
|
|
30
30
|
"build": "tsc -b",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
31
|
+
"prepublishOnly": "if [ \"$CI\" != \"true\" ]; then echo Error: Publishing manually is not supported. Please use the GitHub action. && exit 1; fi",
|
|
32
|
+
"prepack": "npm run build",
|
|
33
|
+
"lint": "eslint ./src --report-unused-disable-directives"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"nanoid": "^3.3.7"
|
|
33
37
|
},
|
|
34
38
|
"devDependencies": {
|
|
35
39
|
"@jest/globals": "^29.7.0",
|
|
36
|
-
"@saasquatch/logger": "^1.
|
|
40
|
+
"@saasquatch/logger": "^1.5.1",
|
|
37
41
|
"@types/express": "4",
|
|
38
42
|
"@types/jest": "^29.5.12",
|
|
39
43
|
"@types/node": "18",
|
|
@@ -49,7 +53,5 @@
|
|
|
49
53
|
"express": "4",
|
|
50
54
|
"winston": "3"
|
|
51
55
|
},
|
|
52
|
-
"
|
|
53
|
-
"nanoid": "^3.3.7"
|
|
54
|
-
}
|
|
56
|
+
"prettier": {}
|
|
55
57
|
}
|