-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.74 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@decimalturn/toml-patch",
"version": "1.1.1",
"contributors": [
"Tim Hall <tim.hall.engr@gmail.com>",
"Martin Leduc <31558169+DecimalTurn@users.noreply.github.com>"
],
"license": "MIT",
"description": "Patch, parse, and stringify TOML while preserving comments and formatting.",
"homepage": "https://github.com/DecimalTurn/toml-patch",
"repository": {
"type": "git",
"url": "git+https://github.com/DecimalTurn/toml-patch.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"toml",
"patch",
"parse",
"stringify",
"parser",
"encoder",
"decoder"
],
"packageManager": "pnpm@10.33.0",
"type": "module",
"types": "./dist/toml-patch.d.ts",
"exports": {
".": {
"types": "./dist/toml-patch.d.ts",
"import": "./dist/toml-patch.js",
"default": "./dist/toml-patch.js"
}
},
"scripts": {
"dev": "pnpm run typecheck && pnpm run build && npm-run-all2 --parallel test:all specs",
"test": "jest --config jest.config.json",
"test:go": "./run-toml-test.bash",
"test:js": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.js.config.mjs",
"test:playwright": "playwright test",
"playwright:install": "playwright install --with-deps chromium",
"test:all": "pnpm run test && pnpm run test:js && pnpm run test:playwright",
"typecheck": "tsc",
"specs": "jest --config jest.specs.config.cjs",
"benchmark": "npm-run-all2 bench:*",
"benchmark:ci": "npm-run-all2 \"bench:* -- --sample --versions latest\"",
"bench:parse": "node benchmark/parse-benchmark.mjs",
"bench:stringify": "node benchmark/stringify-benchmark.mjs",
"profile": "node benchmark/profile.mjs",
"build": "rimraf dist && rollup -c",
"build:demo": "node scripts/build-demo.mjs",
"prepublishOnly": "pnpm run build",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"devDependencies": {
"@decimalturn/toml-patch": "npm:@decimalturn/toml-patch@1.1.1",
"@playwright/test": "^1.59.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/dedent": "^0.7.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^24.0.0",
"benchmark": "^2",
"dedent": "^1.5.3",
"glob": "^13.0.0",
"jest": "^30.0.0",
"js-yaml": "^4.0.0",
"mri": "^1",
"npm-run-all2": "^8.0.0",
"oxlint": "^1.55.0",
"rimraf": "^6.0.0",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-filesize": "^10",
"smol-toml": "^1.6.1",
"ts-jest": "^29",
"tslib": "^2.0.0",
"typescript": "6.0.3"
},
"pnpm": {
"overrides": {
"tar": "^7.5.10",
"@tootallnate/once": "^3.0.1",
"brace-expansion": "^5.0.0",
"lodash": "^4.18.1",
"picomatch": "^4.0.4",
"serialize-javascript": "^7.0.5"
}
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"files": [
"dist/",
"CHANGELOG.md"
],
"json-comments": {
"tips": "Please install the JsonComments plugin to enable commenting functionality for JSON files, see: https://github.com/zhangfisher/json_comments_extension",
"package.json": {
"devDependencies.js-yaml": "Used by specs/specs.test.ts to parse YAML expected-value fixtures from submodules/spec-tests (https://github.com/iarna/toml-spec-tests).",
"pnpm.overrides.lodash": "Override needed to avoid vuln detailed in https://github.com/DecimalTurn/toml-patch/security/dependabot/44",
"pnpm.overrides.picomatch": "Override needed to avoid picomatch vuln detailed in https://github.com/DecimalTurn/toml-patch/security/dependabot/42",
"pnpm.overrides.serialize-javascript": "https://github.com/DecimalTurn/toml-patch/security/dependabot/40"
}
}
}