@depup/js-yaml 5.2.1-depup.9
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 +21 -0
- package/README.md +31 -0
- package/bin/js-yaml.mjs +107 -0
- package/changes.json +10 -0
- package/dist/browser/js-yaml.esm.min.mjs +2209 -0
- package/dist/browser/js-yaml.esm.min.mjs.map +1 -0
- package/dist/browser/js-yaml.umd.min.js +33 -0
- package/dist/browser/js-yaml.umd.min.js.map +1 -0
- package/dist/js-yaml.cjs.js +3242 -0
- package/dist/js-yaml.cjs.js.map +1 -0
- package/dist/js-yaml.d.ts +382 -0
- package/dist/js-yaml.mjs +3136 -0
- package/dist/js-yaml.mjs.map +1 -0
- package/package.json +111 -0
package/package.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/js-yaml",
|
|
3
|
+
"version": "5.2.1-depup.9",
|
|
4
|
+
"description": "YAML 1.2 parser and serializer (with updated dependencies)",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"js-yaml",
|
|
7
|
+
"depup",
|
|
8
|
+
"updated-dependencies",
|
|
9
|
+
"security",
|
|
10
|
+
"latest",
|
|
11
|
+
"patched",
|
|
12
|
+
"yaml",
|
|
13
|
+
"parser",
|
|
14
|
+
"serializer",
|
|
15
|
+
"pyyaml"
|
|
16
|
+
],
|
|
17
|
+
"author": "Vladimir Zapparov <dervus.grim@gmail.com>",
|
|
18
|
+
"contributors": [
|
|
19
|
+
"Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
|
|
20
|
+
"Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)",
|
|
21
|
+
"Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)"
|
|
22
|
+
],
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"repository": "nodeca/js-yaml",
|
|
25
|
+
"funding": [
|
|
26
|
+
{
|
|
27
|
+
"type": "github",
|
|
28
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "github",
|
|
32
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"files": [
|
|
36
|
+
"bin/",
|
|
37
|
+
"dist/",
|
|
38
|
+
"changes.json",
|
|
39
|
+
"README.md"
|
|
40
|
+
],
|
|
41
|
+
"bin": {
|
|
42
|
+
"js-yaml": "bin/js-yaml.mjs"
|
|
43
|
+
},
|
|
44
|
+
"main": "./dist/js-yaml.cjs.js",
|
|
45
|
+
"module": "./dist/js-yaml.mjs",
|
|
46
|
+
"types": "./dist/js-yaml.d.ts",
|
|
47
|
+
"exports": {
|
|
48
|
+
".": {
|
|
49
|
+
"types": "./dist/js-yaml.d.ts",
|
|
50
|
+
"import": "./dist/js-yaml.mjs",
|
|
51
|
+
"require": "./dist/js-yaml.cjs.js"
|
|
52
|
+
},
|
|
53
|
+
"./browser": {
|
|
54
|
+
"types": "./dist/js-yaml.d.ts",
|
|
55
|
+
"import": "./dist/browser/js-yaml.esm.min.mjs",
|
|
56
|
+
"require": "./dist/browser/js-yaml.umd.min.js",
|
|
57
|
+
"default": "./dist/browser/js-yaml.umd.min.js"
|
|
58
|
+
},
|
|
59
|
+
"./package.json": "./package.json"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"lint": "eslint .",
|
|
63
|
+
"lint-fix": "eslint . --fix",
|
|
64
|
+
"type-check": "tsc --noEmit",
|
|
65
|
+
"test": "npm run lint && npm run build && npm run type-check && npm run test:examples && npm run spec:get && node --test 'test/core/**/*.test.mjs' 'test/spec/*.test.mjs'",
|
|
66
|
+
"test:examples": "node --test 'examples/*.mjs'",
|
|
67
|
+
"test:spec": "npm run build && npm run spec:get && node test/spec/spec.test.mjs",
|
|
68
|
+
"spec:get": "node support/get-yaml-test-suite.mjs",
|
|
69
|
+
"spec:update": "node support/get-yaml-test-suite.mjs update",
|
|
70
|
+
"coverage": "npm run build && npm run spec:get && c8 --include 'dist/js-yaml.mjs' --include 'src/**' -r text -r html -r lcov node --test 'test/core/**/*.test.mjs' 'test/spec/*.test.mjs'",
|
|
71
|
+
"build": "node support/build-dist.mjs",
|
|
72
|
+
"build:demo": "npm run lint && node support/build_demo.mjs",
|
|
73
|
+
"gh-demo": "npm run build:demo && gh-pages -d demo -f",
|
|
74
|
+
"benchmark:deps": "npm install --prefix benchmark/extra/",
|
|
75
|
+
"postpublish": "npm run gh-demo"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"argparse": "^3.0.0"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@streamparser/json": "^0.0.22",
|
|
82
|
+
"@types/node": "^24.12.2",
|
|
83
|
+
"c8": "^11.0.0",
|
|
84
|
+
"codemirror": "^5.65.21",
|
|
85
|
+
"eslint": "^9.39.4",
|
|
86
|
+
"fast-check": "^4.8.0",
|
|
87
|
+
"gh-pages": "^6.3.0",
|
|
88
|
+
"mitata": "^1.0.34",
|
|
89
|
+
"neostandard": "^0.13.0",
|
|
90
|
+
"rollup": "^4.62.2",
|
|
91
|
+
"rollup-plugin-dts": "^6.4.1",
|
|
92
|
+
"typescript": "^6.0.3",
|
|
93
|
+
"vite": "^8.1.2",
|
|
94
|
+
"vite-plugin-node-polyfills": "^0.28.0",
|
|
95
|
+
"vite-plugin-singlefile": "^2.3.3",
|
|
96
|
+
"workerpool": "^10.0.3"
|
|
97
|
+
},
|
|
98
|
+
"depup": {
|
|
99
|
+
"changes": {
|
|
100
|
+
"argparse": {
|
|
101
|
+
"from": "^2.0.1",
|
|
102
|
+
"to": "^3.0.0"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"depsUpdated": 1,
|
|
106
|
+
"originalPackage": "js-yaml",
|
|
107
|
+
"originalVersion": "5.2.1",
|
|
108
|
+
"processedAt": "2026-07-21T16:17:31.496Z",
|
|
109
|
+
"smokeTest": "passed"
|
|
110
|
+
}
|
|
111
|
+
}
|