bigal 10.2.0-beta2 → 10.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 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "10.2.0
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -19,26 +19,26 @@
|
|
|
19
19
|
"node": ">=14"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@types/lodash": "^4.14.
|
|
22
|
+
"@types/lodash": "^4.14.181",
|
|
23
23
|
"@types/node": ">=14.15",
|
|
24
24
|
"@types/pg": "^8.6.5",
|
|
25
25
|
"lodash": "^4.17.21",
|
|
26
26
|
"pg": "^8.7.3",
|
|
27
|
-
"postgres-pool": "^5.0.
|
|
27
|
+
"postgres-pool": "^5.0.15"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@faker-js/faker": "^6.
|
|
30
|
+
"@faker-js/faker": "^6.1.2",
|
|
31
31
|
"@types/chai": "^4.3.0",
|
|
32
32
|
"@types/mocha": "^9.1.0",
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
34
|
-
"@typescript-eslint/parser": "^5.
|
|
33
|
+
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
34
|
+
"@typescript-eslint/parser": "^5.19.0",
|
|
35
35
|
"chai": "^4.3.6",
|
|
36
|
-
"eslint": "^8.
|
|
36
|
+
"eslint": "^8.13.0",
|
|
37
37
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
38
|
-
"eslint-config-airbnb-typescript": "^
|
|
38
|
+
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
39
39
|
"eslint-config-prettier": "^8.5.0",
|
|
40
|
-
"eslint-plugin-import": "^2.
|
|
41
|
-
"eslint-plugin-jsdoc": "^
|
|
40
|
+
"eslint-plugin-import": "^2.26.0",
|
|
41
|
+
"eslint-plugin-jsdoc": "^39.2.1",
|
|
42
42
|
"eslint-plugin-mocha": "^10.0.3",
|
|
43
43
|
"eslint-plugin-prettier": "^4.0.0",
|
|
44
44
|
"eslint-plugin-promise": "^6.0.0",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"mocha": "^9.2.2",
|
|
50
50
|
"npm-run-all": "^4.1.5",
|
|
51
51
|
"pinst": "^3.0.0",
|
|
52
|
-
"prettier": "^2.6.
|
|
52
|
+
"prettier": "^2.6.2",
|
|
53
53
|
"rimraf": "^3.0.2",
|
|
54
54
|
"strict-event-emitter-types": "^2.0.0",
|
|
55
55
|
"ts-mockito": "^2.6.1",
|
|
56
56
|
"ts-node": "^10.7.0",
|
|
57
|
-
"typescript": "^4.6.
|
|
57
|
+
"typescript": "^4.6.3"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"check:types": "tsc -p tsconfig.lint.json --noEmit",
|
|
@@ -65,7 +65,8 @@
|
|
|
65
65
|
"lint:code": "eslint --fix --ext .ts src tests",
|
|
66
66
|
"lint": "run-p lint:*",
|
|
67
67
|
"lint-staged": "lint-staged",
|
|
68
|
-
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish
|
|
68
|
+
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish; fi",
|
|
69
|
+
"beta": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish --tag beta; fi",
|
|
69
70
|
"prepublishOnly": "if [ -d \"src\" ]; then echo \"Please use: npm run dist\" && exit 125; fi && pinst --disable",
|
|
70
71
|
"_postinstall": "husky install",
|
|
71
72
|
"postpublish": "pinst --enable"
|