mnemonica 0.9.947 → 0.9.949

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.
Files changed (1) hide show
  1. package/package.json +26 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemonica",
3
- "version": "0.9.947",
3
+ "version": "0.9.949",
4
4
  "description": "abstract technique that aids information retention : instance inheritance system",
5
5
  "type": "commonjs",
6
6
  "main": "./build/index.js",
@@ -30,19 +30,18 @@
30
30
  ],
31
31
  "scripts": {
32
32
  "build": "rm -rf ./build && npx tsc --pretty && npm run lint && npm run lint:test",
33
- "watch": "npx tsc --pretty -w",
34
- "test": "npm run build && mocha --allow-uncaught test/index.js",
35
- "test:cov": "npm run build && nyc --reporter=lcov mocha --allow-uncaught --ui bdd --reporter spec ./test/index.js",
36
- "test:mjs": "npm run build && node --experimental-modules ./test/test.mjs",
37
- "debug": "npx tsc --pretty --sourceMap && npx mocha --allow-uncaught --reporter spec --inspect-brk test/index",
38
- "report-coverage": "cat coverage/lcov.info | coveralls",
39
33
  "example": "npm run build && node ./test/example.js",
34
+ "example:ts": "npx tsc ./test-ts/*.ts && npx eslint --fix ./test-ts/*.js && node ./test-ts/test-no-types.js && node ./test-ts/test-with-types.js",
40
35
  "lint": "npx eslint --fix",
41
36
  "lint:test": "npx eslint --fix ./test",
42
- "ts:example": "npx tsc ./test-ts/*.ts && npx eslint --fix ./test-ts/*.js && node ./test-ts/test-no-types.js && node ./test-ts/test-with-types.js",
43
- "testjest": "npx jest",
44
- "testjest:cov": "npx jest --collectCoverage",
45
- "testjest:debug": "npx --node-arg=--inspect-brk jest"
37
+ "test": "npm run build && mocha --allow-uncaught test/index.js",
38
+ "test:cov": "npm run build && nyc --reporter=lcov mocha --allow-uncaught --ui bdd --reporter spec ./test/index.js",
39
+ "test:debug": "npx tsc --pretty --sourceMap && npx mocha --allow-uncaught --reporter spec --inspect-brk test/index",
40
+ "test:jest": "npx jest",
41
+ "test:jest:cov": "npx jest --collectCoverage",
42
+ "test:jest:debug": "npx --node-arg=--inspect-brk jest",
43
+ "test:mjs": "npm run build && node --experimental-modules ./test/test.mjs",
44
+ "watch": "npx tsc --pretty -w"
46
45
  },
47
46
  "repository": {
48
47
  "type": "git",
@@ -64,29 +63,30 @@
64
63
  },
65
64
  "homepage": "https://github.com/wentout/mnemonica#readme",
66
65
  "devDependencies": {
67
- "@types/jest": "^29.2.3",
68
- "@types/node": "^18.11.10",
69
- "@typescript-eslint/eslint-plugin": "^5.45.0",
70
- "@typescript-eslint/parser": "^5.45.0",
66
+ "@types/jest": "^29.5.0",
67
+ "@types/node": "^18.15.5",
68
+ "@typescript-eslint/eslint-plugin": "^5.56.0",
69
+ "@typescript-eslint/parser": "^5.56.0",
71
70
  "chai": "^4.3.7",
72
- "coveralls": "^3.1.1",
73
- "eslint": "^8.29.0",
74
- "eslint-config-prettier": "^8.5.0",
75
- "eslint-plugin-import": "^2.26.0",
71
+ "eslint": "^8.36.0",
72
+ "eslint-config-prettier": "^8.8.0",
73
+ "eslint-plugin-import": "^2.27.5",
76
74
  "eslint-plugin-mocha": "^10.1.0",
77
75
  "eslint-plugin-no-arrow-this": "^1.2.0",
78
76
  "eslint-plugin-prettier": "^4.2.1",
79
- "husky": "^8.0.2",
80
- "jest": "^29.3.1",
81
- "lint-staged": "^13.1.0",
82
- "mocha": "^10.1.0",
77
+ "husky": "^8.0.3",
78
+ "jest": "^29.5.0",
79
+ "json5": "^2.2.3",
80
+ "lint-staged": "^13.2.0",
81
+ "mocha": "^10.2.0",
83
82
  "mocha-lcov-reporter": "^1.3.0",
84
83
  "nyc": "^15.1.0",
85
- "ts-jest": "^29.0.3",
86
- "typescript": "^4.9.4"
84
+ "prettier": "^2.8.6",
85
+ "ts-jest": "^29.0.5",
86
+ "typescript": "^5.0.2"
87
87
  },
88
88
  "engines": {
89
- "node": ">=12"
89
+ "node": ">=14"
90
90
  },
91
91
  "husky": {
92
92
  "hooks": {