@qubit-ltd/logging 1.4.11 → 1.4.12
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 +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qubit-ltd/logging",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.12",
|
|
4
4
|
"description": "A simple JavaScript logging framework",
|
|
5
5
|
"author": "Haixing Hu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"browser": "./dist/logging.min.iife.js"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
|
+
"type": "module",
|
|
31
32
|
"files": [
|
|
32
33
|
"dist/**/*",
|
|
33
34
|
"doc/**/*",
|
|
@@ -40,8 +41,8 @@
|
|
|
40
41
|
"build": "cross-env NODE_ENV=production rollup -c rollup.config.mjs",
|
|
41
42
|
"build:dev": "cross-env NODE_ENV=development rollup -c rollup.config.mjs",
|
|
42
43
|
"build:all": "npm run clean && npm run build:dev && npm run build && npm run doc",
|
|
43
|
-
"test": "jest",
|
|
44
|
-
"lint": "eslint ./src ./test",
|
|
44
|
+
"test": "jest --config jest.config.cjs",
|
|
45
|
+
"lint": "eslint --config eslint.config.mjs ./src ./test",
|
|
45
46
|
"doc": "jsdoc -c jsdoc.json",
|
|
46
47
|
"es5": "check-es-version -e 5 -s true",
|
|
47
48
|
"deploy": "npm run lint && npm run test && npm run build:all && npm publish --registry='https://npm.qubit.ltd/' --access public",
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
"@haixing_hu/typeinfo": "^3.1.2",
|
|
70
71
|
"@haixing_hu/vue3-class-component": "^2.3.1",
|
|
71
72
|
"@jest/core": "^30.1.3",
|
|
72
|
-
"@qubit-ltd/eslint-config": "^
|
|
73
|
+
"@qubit-ltd/eslint-config": "^2.0.0",
|
|
73
74
|
"@qubit-ltd/jsdoc-theme": "^1.5.1",
|
|
74
75
|
"@qubit-ltd/rollup-builder": "^1.8.12",
|
|
75
76
|
"@rollup/plugin-alias": "^5.1.1",
|
|
@@ -87,9 +88,9 @@
|
|
|
87
88
|
"check-es-version": "^1.5.1",
|
|
88
89
|
"core-js": "^3.45.1",
|
|
89
90
|
"cross-env": "^10.0.0",
|
|
90
|
-
"eslint": "^
|
|
91
|
+
"eslint": "^9.35.0",
|
|
91
92
|
"eslint-plugin-import": "^2.32.0",
|
|
92
|
-
"eslint-plugin-vue": "^
|
|
93
|
+
"eslint-plugin-vue": "^10.4.0",
|
|
93
94
|
"jest": "^29.7.0",
|
|
94
95
|
"jest-environment-jsdom": "^29.7.0",
|
|
95
96
|
"jest-environment-jsdom-global": "^4.0.0",
|
|
@@ -99,7 +100,8 @@
|
|
|
99
100
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
100
101
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
101
102
|
"typescript": "^5.9.2",
|
|
102
|
-
"vue": "^3.5.21"
|
|
103
|
+
"vue": "^3.5.21",
|
|
104
|
+
"vue-eslint-parser": "^10.2.0"
|
|
103
105
|
},
|
|
104
106
|
"packageManager": "yarn@4.5.0"
|
|
105
107
|
}
|