ts-serializable 3.0.48 → 3.0.52

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.
@@ -1,3 +1,3 @@
1
+ /* eslint-disable @stylistic/indent-binary-ops */
1
2
  /* eslint-disable @typescript-eslint/no-invalid-void-type */
2
- /* eslint-disable @typescript-eslint/no-type-alias */
3
3
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-serializable",
3
- "version": "3.0.48",
3
+ "version": "3.0.52",
4
4
  "description": "Serialization and deserializtion for classes",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",
@@ -10,19 +10,19 @@
10
10
  "reflect-metadata": ">=0.1.0"
11
11
  },
12
12
  "devDependencies": {
13
- "@labeg/code-style": "^3.0.9",
13
+ "@labeg/code-style": "^4.0.5",
14
14
  "@types/chai": "^4.3.11",
15
15
  "@types/mocha": "^10.0.6",
16
16
  "chai": "^4.3.10",
17
17
  "mocha": "^10.2.0",
18
- "reflect-metadata": "^0.1.13",
19
- "ts-node": "^10.9.1",
20
- "typescript": "^5.3.2"
18
+ "reflect-metadata": "^0.2.1",
19
+ "ts-node": "^10.9.2",
20
+ "typescript": "^5.3.3"
21
21
  },
22
22
  "scripts": {
23
23
  "cs:eslint": "eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js ./src/ ./tests/",
24
24
  "test": "mocha --reporter spec --require ts-node/register tests/*.test.ts",
25
- "build": "rm -rf dist/ && tsc --project tsconfigbuild.json && node ./dist/index.js",
25
+ "build": "rm -rf dist/ && tsc --project tsconfig.build.json && node ./dist/index.js",
26
26
  "prepublishOnly": "npm run cs:eslint && npm run build && npm run test && npm version patch"
27
27
  },
28
28
  "repository": {