@qubit-ltd/json 1.1.4
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/LICENSE +201 -0
- package/README.md +219 -0
- package/README.zh_CN.md +194 -0
- package/dist/json.cjs +623 -0
- package/dist/json.cjs.map +1 -0
- package/dist/json.min.cjs +1 -0
- package/dist/json.min.cjs.map +1 -0
- package/dist/json.min.mjs +1 -0
- package/dist/json.min.mjs.map +1 -0
- package/dist/json.mjs +610 -0
- package/dist/json.mjs.map +1 -0
- package/doc/api/LosslessNumber.html +610 -0
- package/doc/api/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-Bold-webfont.svg +1838 -0
- package/doc/api/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-BoldItalic-webfont.svg +1838 -0
- package/doc/api/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-Italic-webfont.svg +1838 -0
- package/doc/api/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-Light-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-Light-webfont.svg +1839 -0
- package/doc/api/fonts/OpenSans-Light-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-LightItalic-webfont.svg +1843 -0
- package/doc/api/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-Regular-webfont.svg +1839 -0
- package/doc/api/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-Semibold-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-Semibold-webfont.svg +1838 -0
- package/doc/api/fonts/OpenSans-Semibold-webfont.ttf +0 -0
- package/doc/api/fonts/OpenSans-Semibold-webfont.woff +0 -0
- package/doc/api/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
- package/doc/api/fonts/OpenSans-SemiboldItalic-webfont.svg +1838 -0
- package/doc/api/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
- package/doc/api/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
- package/doc/api/global.html +1274 -0
- package/doc/api/index.html +236 -0
- package/doc/api/scripts/linenumber.js +34 -0
- package/doc/api/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/doc/api/scripts/prettify/lang-css.js +2 -0
- package/doc/api/scripts/prettify/prettify.js +28 -0
- package/doc/api/styles/jsdoc-default.css +699 -0
- package/doc/api/styles/prettify-jsdoc.css +120 -0
- package/doc/api/styles/prettify-tomorrow.css +141 -0
- package/doc/json.min.visualization.html +4949 -0
- package/doc/json.visualization.html +4949 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qubit-ltd/json",
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "A JavaScript library for parsing and formatting JSON data.",
|
|
5
|
+
"author": "Haixing Hu",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Haixing-Hu/js-json.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Haixing-Hu/js-json/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Haixing-Hu/js-json",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"javascript",
|
|
17
|
+
"json",
|
|
18
|
+
"logger",
|
|
19
|
+
"decorator"
|
|
20
|
+
],
|
|
21
|
+
"main": "dist/json.min.cjs",
|
|
22
|
+
"module": "dist/json.min.mjs",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"require": "./dist/json.min.cjs",
|
|
26
|
+
"import": "./dist/json.min.mjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist/**/*",
|
|
31
|
+
"doc/**/*",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"README.md",
|
|
34
|
+
"README.zh_CN.md"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rm -rvf dist doc",
|
|
38
|
+
"build": "cross-env NODE_ENV=production rollup -c rollup.config.mjs",
|
|
39
|
+
"build:dev": "cross-env NODE_ENV=development rollup -c rollup.config.mjs",
|
|
40
|
+
"build:all": "npm run clean && npm run doc && npm run build:dev && npm run build",
|
|
41
|
+
"test": "jest",
|
|
42
|
+
"lint": "eslint ./src",
|
|
43
|
+
"doc": "jsdoc -c jsdoc.json",
|
|
44
|
+
"es5": "check-es-version -e 5 -s true",
|
|
45
|
+
"deploy": "npm run lint && npm run test && npm run build:all && npm publish --registry='https://registry.npmjs.com/' --access public"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"json-custom-numbers": "^3.1.1"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@babel/runtime": "^7.26.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@babel/core": "^7.26.0",
|
|
55
|
+
"@babel/eslint-parser": "^7.25.9",
|
|
56
|
+
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
57
|
+
"@babel/plugin-transform-class-properties": "^7.25.9",
|
|
58
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
59
|
+
"@babel/preset-env": "^7.26.0",
|
|
60
|
+
"@babel/runtime": "^7.26.0",
|
|
61
|
+
"@jest/core": "^29.7.0",
|
|
62
|
+
"@qubit-ltd/eslint-config": "^1.3.4",
|
|
63
|
+
"@qubit-ltd/jsdoc-minami": "^1.5.2",
|
|
64
|
+
"@qubit-ltd/rollup-builder": "^1.8.7",
|
|
65
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
66
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
67
|
+
"@rollup/plugin-commonjs": "^25.0.8",
|
|
68
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
69
|
+
"@rollup/plugin-node-resolve": "^15.3.1",
|
|
70
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
71
|
+
"babel-jest": "^29.7.0",
|
|
72
|
+
"check-es-version": "^1.5.0",
|
|
73
|
+
"core-js": "^3.39.0",
|
|
74
|
+
"cross-env": "^7.0.3",
|
|
75
|
+
"eslint": "^8.57.1",
|
|
76
|
+
"eslint-plugin-import": "^2.31.0",
|
|
77
|
+
"jest": "^29.7.0",
|
|
78
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
79
|
+
"jest-environment-jsdom-global": "^4.0.0",
|
|
80
|
+
"jest-extended": "^4.0.2",
|
|
81
|
+
"jsdoc": "^4.0.4",
|
|
82
|
+
"rollup": "^4.29.1",
|
|
83
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
84
|
+
"rollup-plugin-visualizer": "^5.13.1"
|
|
85
|
+
},
|
|
86
|
+
"packageManager": "yarn@4.5.0"
|
|
87
|
+
}
|