@accordproject/concerto-util 3.19.2 → 3.19.3-20241021135045

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accordproject/concerto-util",
3
- "version": "3.19.2",
3
+ "version": "3.19.3-20241021135045",
4
4
  "description": "Utilities for Concerto Modeling Language",
5
5
  "homepage": "https://github.com/accordproject/concerto",
6
6
  "engines": {
@@ -16,11 +16,8 @@
16
16
  "typings": "types/index.d.ts",
17
17
  "scripts": {
18
18
  "prepublishOnly": "npm run webpack",
19
- "pretest": "npm run lint",
19
+ "pretest": "npm run lint && npm run doc",
20
20
  "lint": "eslint .",
21
- "postlint": "npm run licchk",
22
- "licchk": "license-check-and-add",
23
- "postlicchk": "npm run doc",
24
21
  "doc": "jsdoc --pedantic --recurse -c jsdoc.json",
25
22
  "test": "nyc mocha --recursive -t 10000",
26
23
  "test:watch": "nyc mocha --watch --recursive -t 10000",
@@ -49,12 +46,11 @@
49
46
  "chai-things": "0.2.0",
50
47
  "eslint": "8.2.0",
51
48
  "jsdoc": "^4.0.2",
52
- "license-check-and-add": "2.3.6",
53
49
  "mocha": "10.0.0",
54
50
  "node-polyfill-webpack-plugin": "2.0.1",
55
51
  "nyc": "15.1.0",
56
52
  "tmp-promise": "3.0.2",
57
- "typescript": "4.6.3",
53
+ "typescript": "5.6.3",
58
54
  "undici": "^6.19.8"
59
55
  },
60
56
  "dependencies": {
@@ -63,46 +59,6 @@
63
59
  "slash": "3.0.0"
64
60
  },
65
61
  "browserslist": "> 0.25%, not dead",
66
- "license-check-and-add-config": {
67
- "folder": "./lib",
68
- "license": "HEADER",
69
- "exact_paths_method": "EXCLUDE",
70
- "exact_paths": [
71
- "api.txt",
72
- "composer-logs",
73
- "coverage",
74
- "LICENSE",
75
- "node_modules",
76
- ".nyc-output",
77
- "out",
78
- ".tern-project"
79
- ],
80
- "file_type_method": "EXCLUDE",
81
- "file_types": [
82
- ".yml",
83
- ".yaml",
84
- ".zip",
85
- ".tgz"
86
- ],
87
- "insert_license": false,
88
- "license_formats": {
89
- "js|njk|pegjs|cto|acl|qry": {
90
- "prepend": "/*",
91
- "append": " */",
92
- "eachLine": {
93
- "prepend": " * "
94
- }
95
- },
96
- "npmrc|editorconfig|txt": {
97
- "eachLine": {
98
- "prepend": "# "
99
- }
100
- },
101
- "md": {
102
- "file": "HEADER.md"
103
- }
104
- }
105
- },
106
62
  "nyc": {
107
63
  "produce-source-map": "true",
108
64
  "sourceMap": "inline",
@@ -101,6 +101,6 @@ declare class Logger {
101
101
  private static silly;
102
102
  }
103
103
  declare namespace Logger {
104
- const level: string;
105
- const transports: {}[];
104
+ let level: string;
105
+ let transports: {}[];
106
106
  }