@fgv/ts-extras-transformers 5.1.0-29 → 5.1.0-31
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/.rush/temp/{cad001c0dd0af20627d8849ed0e5fa4904160f67.tar.log → 68c2ac21917fe0732986270e7582d872fc12e9b8.tar.log} +2 -2
- package/.rush/temp/chunked-rush-logs/ts-extras-transformers.build.chunks.jsonl +2 -2
- package/.rush/temp/operation/build/all.log +2 -2
- package/.rush/temp/operation/build/log-chunks.jsonl +2 -2
- package/.rush/temp/operation/build/state.json +1 -1
- package/dist/index.js +27 -3
- package/dist/index.js.map +1 -1
- package/dist/test/unit/transformers.test.js +38 -1
- package/dist/test/unit/transformers.test.js.map +1 -1
- package/dist/ts-extras-transformers.d.ts +32 -3
- package/etc/ts-extras-transformers.api.md +9 -0
- package/lib/index.d.ts +27 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +28 -3
- package/lib/index.js.map +1 -1
- package/lib/test/unit/transformers.test.js +37 -0
- package/lib/test/unit/transformers.test.js.map +1 -1
- package/package.json +19 -19
- package/rush-logs/ts-extras-transformers.build.cache.log +1 -1
- package/rush-logs/ts-extras-transformers.build.log +2 -2
- package/src/index.ts +36 -3
- package/src/test/unit/transformers.test.ts +53 -0
- package/temp/build/lint/_eslint-5eVG3S6w.json +3 -3
- package/temp/build/typescript/ts_8nwakTlr.json +1 -1
- package/temp/ts-extras-transformers.api.json +116 -1
- package/temp/ts-extras-transformers.api.md +9 -0
- package/.rush/temp/chunked-rush-logs/ts-extras-transformers.test.chunks.jsonl +0 -28
- package/.rush/temp/operation/test/all.log +0 -28
- package/.rush/temp/operation/test/log-chunks.jsonl +0 -28
- package/.rush/temp/operation/test/state.json +0 -3
- package/rush-logs/ts-extras-transformers.test.cache.log +0 -1
- package/rush-logs/ts-extras-transformers.test.log +0 -28
- package/temp/coverage/base.css +0 -224
- package/temp/coverage/block-navigation.js +0 -87
- package/temp/coverage/favicon.png +0 -0
- package/temp/coverage/index.html +0 -116
- package/temp/coverage/index.ts.html +0 -622
- package/temp/coverage/lcov-report/base.css +0 -224
- package/temp/coverage/lcov-report/block-navigation.js +0 -87
- package/temp/coverage/lcov-report/favicon.png +0 -0
- package/temp/coverage/lcov-report/index.html +0 -116
- package/temp/coverage/lcov-report/index.ts.html +0 -622
- package/temp/coverage/lcov-report/prettify.css +0 -1
- package/temp/coverage/lcov-report/prettify.js +0 -2
- package/temp/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/temp/coverage/lcov-report/sorter.js +0 -210
- package/temp/coverage/lcov.info +0 -209
- package/temp/coverage/prettify.css +0 -1
- package/temp/coverage/prettify.js +0 -2
- package/temp/coverage/sort-arrow-sprite.png +0 -0
- package/temp/coverage/sorter.js +0 -210
- package/temp/test/jest/haste-map-502913d9c10083bec2207119c45d7122-cd1aa4a0322f87b67f395127aa5e94ac-091f69b131db2c080ae4b15b7b2d4a16 +0 -0
- package/temp/test/jest/jest-transform-cache-502913d9c10083bec2207119c45d7122-79ef2876fae7ca75eedb2aa53dc48338/8d/package_8dec8c7ec8d6c787063a4a014e769a65 +0 -53
- package/temp/test/jest/jest-transform-cache-502913d9c10083bec2207119c45d7122-79ef2876fae7ca75eedb2aa53dc48338/d5/package_d56b0a8a49dbfccad646fc2e21950522 +0 -203
- package/temp/test/jest/jest-transform-cache-502913d9c10083bec2207119c45d7122-79ef2876fae7ca75eedb2aa53dc48338/fc/versions_fc561f31b0dfb504443c5b8531747bfb +0 -31
- package/temp/test/jest/perf-cache-502913d9c10083bec2207119c45d7122-da39a3ee5e6b4b0d3255bfef95601890 +0 -1
package/temp/coverage/sorter.js
DELETED
|
@@ -1,210 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
var addSorting = (function() {
|
|
3
|
-
'use strict';
|
|
4
|
-
var cols,
|
|
5
|
-
currentSort = {
|
|
6
|
-
index: 0,
|
|
7
|
-
desc: false
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
// returns the summary table element
|
|
11
|
-
function getTable() {
|
|
12
|
-
return document.querySelector('.coverage-summary');
|
|
13
|
-
}
|
|
14
|
-
// returns the thead element of the summary table
|
|
15
|
-
function getTableHeader() {
|
|
16
|
-
return getTable().querySelector('thead tr');
|
|
17
|
-
}
|
|
18
|
-
// returns the tbody element of the summary table
|
|
19
|
-
function getTableBody() {
|
|
20
|
-
return getTable().querySelector('tbody');
|
|
21
|
-
}
|
|
22
|
-
// returns the th element for nth column
|
|
23
|
-
function getNthColumn(n) {
|
|
24
|
-
return getTableHeader().querySelectorAll('th')[n];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
function onFilterInput() {
|
|
28
|
-
const searchValue = document.getElementById('fileSearch').value;
|
|
29
|
-
const rows = document.getElementsByTagName('tbody')[0].children;
|
|
30
|
-
|
|
31
|
-
// Try to create a RegExp from the searchValue. If it fails (invalid regex),
|
|
32
|
-
// it will be treated as a plain text search
|
|
33
|
-
let searchRegex;
|
|
34
|
-
try {
|
|
35
|
-
searchRegex = new RegExp(searchValue, 'i'); // 'i' for case-insensitive
|
|
36
|
-
} catch (error) {
|
|
37
|
-
searchRegex = null;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
for (let i = 0; i < rows.length; i++) {
|
|
41
|
-
const row = rows[i];
|
|
42
|
-
let isMatch = false;
|
|
43
|
-
|
|
44
|
-
if (searchRegex) {
|
|
45
|
-
// If a valid regex was created, use it for matching
|
|
46
|
-
isMatch = searchRegex.test(row.textContent);
|
|
47
|
-
} else {
|
|
48
|
-
// Otherwise, fall back to the original plain text search
|
|
49
|
-
isMatch = row.textContent
|
|
50
|
-
.toLowerCase()
|
|
51
|
-
.includes(searchValue.toLowerCase());
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
row.style.display = isMatch ? '' : 'none';
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// loads the search box
|
|
59
|
-
function addSearchBox() {
|
|
60
|
-
var template = document.getElementById('filterTemplate');
|
|
61
|
-
var templateClone = template.content.cloneNode(true);
|
|
62
|
-
templateClone.getElementById('fileSearch').oninput = onFilterInput;
|
|
63
|
-
template.parentElement.appendChild(templateClone);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// loads all columns
|
|
67
|
-
function loadColumns() {
|
|
68
|
-
var colNodes = getTableHeader().querySelectorAll('th'),
|
|
69
|
-
colNode,
|
|
70
|
-
cols = [],
|
|
71
|
-
col,
|
|
72
|
-
i;
|
|
73
|
-
|
|
74
|
-
for (i = 0; i < colNodes.length; i += 1) {
|
|
75
|
-
colNode = colNodes[i];
|
|
76
|
-
col = {
|
|
77
|
-
key: colNode.getAttribute('data-col'),
|
|
78
|
-
sortable: !colNode.getAttribute('data-nosort'),
|
|
79
|
-
type: colNode.getAttribute('data-type') || 'string'
|
|
80
|
-
};
|
|
81
|
-
cols.push(col);
|
|
82
|
-
if (col.sortable) {
|
|
83
|
-
col.defaultDescSort = col.type === 'number';
|
|
84
|
-
colNode.innerHTML =
|
|
85
|
-
colNode.innerHTML + '<span class="sorter"></span>';
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
return cols;
|
|
89
|
-
}
|
|
90
|
-
// attaches a data attribute to every tr element with an object
|
|
91
|
-
// of data values keyed by column name
|
|
92
|
-
function loadRowData(tableRow) {
|
|
93
|
-
var tableCols = tableRow.querySelectorAll('td'),
|
|
94
|
-
colNode,
|
|
95
|
-
col,
|
|
96
|
-
data = {},
|
|
97
|
-
i,
|
|
98
|
-
val;
|
|
99
|
-
for (i = 0; i < tableCols.length; i += 1) {
|
|
100
|
-
colNode = tableCols[i];
|
|
101
|
-
col = cols[i];
|
|
102
|
-
val = colNode.getAttribute('data-value');
|
|
103
|
-
if (col.type === 'number') {
|
|
104
|
-
val = Number(val);
|
|
105
|
-
}
|
|
106
|
-
data[col.key] = val;
|
|
107
|
-
}
|
|
108
|
-
return data;
|
|
109
|
-
}
|
|
110
|
-
// loads all row data
|
|
111
|
-
function loadData() {
|
|
112
|
-
var rows = getTableBody().querySelectorAll('tr'),
|
|
113
|
-
i;
|
|
114
|
-
|
|
115
|
-
for (i = 0; i < rows.length; i += 1) {
|
|
116
|
-
rows[i].data = loadRowData(rows[i]);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
// sorts the table using the data for the ith column
|
|
120
|
-
function sortByIndex(index, desc) {
|
|
121
|
-
var key = cols[index].key,
|
|
122
|
-
sorter = function(a, b) {
|
|
123
|
-
a = a.data[key];
|
|
124
|
-
b = b.data[key];
|
|
125
|
-
return a < b ? -1 : a > b ? 1 : 0;
|
|
126
|
-
},
|
|
127
|
-
finalSorter = sorter,
|
|
128
|
-
tableBody = document.querySelector('.coverage-summary tbody'),
|
|
129
|
-
rowNodes = tableBody.querySelectorAll('tr'),
|
|
130
|
-
rows = [],
|
|
131
|
-
i;
|
|
132
|
-
|
|
133
|
-
if (desc) {
|
|
134
|
-
finalSorter = function(a, b) {
|
|
135
|
-
return -1 * sorter(a, b);
|
|
136
|
-
};
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
for (i = 0; i < rowNodes.length; i += 1) {
|
|
140
|
-
rows.push(rowNodes[i]);
|
|
141
|
-
tableBody.removeChild(rowNodes[i]);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
rows.sort(finalSorter);
|
|
145
|
-
|
|
146
|
-
for (i = 0; i < rows.length; i += 1) {
|
|
147
|
-
tableBody.appendChild(rows[i]);
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
// removes sort indicators for current column being sorted
|
|
151
|
-
function removeSortIndicators() {
|
|
152
|
-
var col = getNthColumn(currentSort.index),
|
|
153
|
-
cls = col.className;
|
|
154
|
-
|
|
155
|
-
cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
|
|
156
|
-
col.className = cls;
|
|
157
|
-
}
|
|
158
|
-
// adds sort indicators for current column being sorted
|
|
159
|
-
function addSortIndicators() {
|
|
160
|
-
getNthColumn(currentSort.index).className += currentSort.desc
|
|
161
|
-
? ' sorted-desc'
|
|
162
|
-
: ' sorted';
|
|
163
|
-
}
|
|
164
|
-
// adds event listeners for all sorter widgets
|
|
165
|
-
function enableUI() {
|
|
166
|
-
var i,
|
|
167
|
-
el,
|
|
168
|
-
ithSorter = function ithSorter(i) {
|
|
169
|
-
var col = cols[i];
|
|
170
|
-
|
|
171
|
-
return function() {
|
|
172
|
-
var desc = col.defaultDescSort;
|
|
173
|
-
|
|
174
|
-
if (currentSort.index === i) {
|
|
175
|
-
desc = !currentSort.desc;
|
|
176
|
-
}
|
|
177
|
-
sortByIndex(i, desc);
|
|
178
|
-
removeSortIndicators();
|
|
179
|
-
currentSort.index = i;
|
|
180
|
-
currentSort.desc = desc;
|
|
181
|
-
addSortIndicators();
|
|
182
|
-
};
|
|
183
|
-
};
|
|
184
|
-
for (i = 0; i < cols.length; i += 1) {
|
|
185
|
-
if (cols[i].sortable) {
|
|
186
|
-
// add the click event handler on the th so users
|
|
187
|
-
// dont have to click on those tiny arrows
|
|
188
|
-
el = getNthColumn(i).querySelector('.sorter').parentElement;
|
|
189
|
-
if (el.addEventListener) {
|
|
190
|
-
el.addEventListener('click', ithSorter(i));
|
|
191
|
-
} else {
|
|
192
|
-
el.attachEvent('onclick', ithSorter(i));
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
// adds sorting functionality to the UI
|
|
198
|
-
return function() {
|
|
199
|
-
if (!getTable()) {
|
|
200
|
-
return;
|
|
201
|
-
}
|
|
202
|
-
cols = loadColumns();
|
|
203
|
-
loadData();
|
|
204
|
-
addSearchBox();
|
|
205
|
-
addSortIndicators();
|
|
206
|
-
enableUI();
|
|
207
|
-
};
|
|
208
|
-
})();
|
|
209
|
-
|
|
210
|
-
window.addEventListener('load', addSorting);
|
|
Binary file
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
a2f4ebf55cb754b78126a3682bdc0d24
|
|
2
|
-
{
|
|
3
|
-
"name": "@jest/transform",
|
|
4
|
-
"version": "29.7.0",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/jestjs/jest.git",
|
|
8
|
-
"directory": "packages/jest-transform"
|
|
9
|
-
},
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"main": "./build/index.js",
|
|
12
|
-
"types": "./build/index.d.ts",
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"types": "./build/index.d.ts",
|
|
16
|
-
"default": "./build/index.js"
|
|
17
|
-
},
|
|
18
|
-
"./package.json": "./package.json"
|
|
19
|
-
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"@babel/core": "^7.11.6",
|
|
22
|
-
"@jest/types": "^29.6.3",
|
|
23
|
-
"@jridgewell/trace-mapping": "^0.3.18",
|
|
24
|
-
"babel-plugin-istanbul": "^6.1.1",
|
|
25
|
-
"chalk": "^4.0.0",
|
|
26
|
-
"convert-source-map": "^2.0.0",
|
|
27
|
-
"fast-json-stable-stringify": "^2.1.0",
|
|
28
|
-
"graceful-fs": "^4.2.9",
|
|
29
|
-
"jest-haste-map": "^29.7.0",
|
|
30
|
-
"jest-regex-util": "^29.6.3",
|
|
31
|
-
"jest-util": "^29.7.0",
|
|
32
|
-
"micromatch": "^4.0.4",
|
|
33
|
-
"pirates": "^4.0.4",
|
|
34
|
-
"slash": "^3.0.0",
|
|
35
|
-
"write-file-atomic": "^4.0.2"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@jest/test-utils": "^29.7.0",
|
|
39
|
-
"@types/babel__core": "^7.1.14",
|
|
40
|
-
"@types/convert-source-map": "^2.0.0",
|
|
41
|
-
"@types/graceful-fs": "^4.1.3",
|
|
42
|
-
"@types/micromatch": "^4.0.1",
|
|
43
|
-
"@types/write-file-atomic": "^4.0.0",
|
|
44
|
-
"dedent": "^1.0.0"
|
|
45
|
-
},
|
|
46
|
-
"engines": {
|
|
47
|
-
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
48
|
-
},
|
|
49
|
-
"publishConfig": {
|
|
50
|
-
"access": "public"
|
|
51
|
-
},
|
|
52
|
-
"gitHead": "4e56991693da7cd4c3730dc3579a1dd1403ee630"
|
|
53
|
-
}
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
dc71025c741eecfd9707da0dcc6521d4
|
|
2
|
-
{
|
|
3
|
-
"name": "sharp",
|
|
4
|
-
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
|
|
5
|
-
"version": "0.34.5",
|
|
6
|
-
"author": "Lovell Fuller <npm@lovell.info>",
|
|
7
|
-
"homepage": "https://sharp.pixelplumbing.com",
|
|
8
|
-
"contributors": [
|
|
9
|
-
"Pierre Inglebert <pierre.inglebert@gmail.com>",
|
|
10
|
-
"Jonathan Ong <jonathanrichardong@gmail.com>",
|
|
11
|
-
"Chanon Sajjamanochai <chanon.s@gmail.com>",
|
|
12
|
-
"Juliano Julio <julianojulio@gmail.com>",
|
|
13
|
-
"Daniel Gasienica <daniel@gasienica.ch>",
|
|
14
|
-
"Julian Walker <julian@fiftythree.com>",
|
|
15
|
-
"Amit Pitaru <pitaru.amit@gmail.com>",
|
|
16
|
-
"Brandon Aaron <hello.brandon@aaron.sh>",
|
|
17
|
-
"Andreas Lind <andreas@one.com>",
|
|
18
|
-
"Maurus Cuelenaere <mcuelenaere@gmail.com>",
|
|
19
|
-
"Linus Unnebäck <linus@folkdatorn.se>",
|
|
20
|
-
"Victor Mateevitsi <mvictoras@gmail.com>",
|
|
21
|
-
"Alaric Holloway <alaric.holloway@gmail.com>",
|
|
22
|
-
"Bernhard K. Weisshuhn <bkw@codingforce.com>",
|
|
23
|
-
"Chris Riley <criley@primedia.com>",
|
|
24
|
-
"David Carley <dacarley@gmail.com>",
|
|
25
|
-
"John Tobin <john@limelightmobileinc.com>",
|
|
26
|
-
"Kenton Gray <kentongray@gmail.com>",
|
|
27
|
-
"Felix Bünemann <Felix.Buenemann@gmail.com>",
|
|
28
|
-
"Samy Al Zahrani <samyalzahrany@gmail.com>",
|
|
29
|
-
"Chintan Thakkar <lemnisk8@gmail.com>",
|
|
30
|
-
"F. Orlando Galashan <frulo@gmx.de>",
|
|
31
|
-
"Kleis Auke Wolthuizen <info@kleisauke.nl>",
|
|
32
|
-
"Matt Hirsch <mhirsch@media.mit.edu>",
|
|
33
|
-
"Matthias Thoemmes <thoemmes@gmail.com>",
|
|
34
|
-
"Patrick Paskaris <patrick@paskaris.gr>",
|
|
35
|
-
"Jérémy Lal <kapouer@melix.org>",
|
|
36
|
-
"Rahul Nanwani <r.nanwani@gmail.com>",
|
|
37
|
-
"Alice Monday <alice0meta@gmail.com>",
|
|
38
|
-
"Kristo Jorgenson <kristo.jorgenson@gmail.com>",
|
|
39
|
-
"YvesBos <yves_bos@outlook.com>",
|
|
40
|
-
"Guy Maliar <guy@tailorbrands.com>",
|
|
41
|
-
"Nicolas Coden <nicolas@ncoden.fr>",
|
|
42
|
-
"Matt Parrish <matt.r.parrish@gmail.com>",
|
|
43
|
-
"Marcel Bretschneider <marcel.bretschneider@gmail.com>",
|
|
44
|
-
"Matthew McEachen <matthew+github@mceachen.org>",
|
|
45
|
-
"Jarda Kotěšovec <jarda.kotesovec@gmail.com>",
|
|
46
|
-
"Kenric D'Souza <kenric.dsouza@gmail.com>",
|
|
47
|
-
"Oleh Aleinyk <oleg.aleynik@gmail.com>",
|
|
48
|
-
"Marcel Bretschneider <marcel.bretschneider@gmail.com>",
|
|
49
|
-
"Andrea Bianco <andrea.bianco@unibas.ch>",
|
|
50
|
-
"Rik Heywood <rik@rik.org>",
|
|
51
|
-
"Thomas Parisot <hi@oncletom.io>",
|
|
52
|
-
"Nathan Graves <nathanrgraves+github@gmail.com>",
|
|
53
|
-
"Tom Lokhorst <tom@lokhorst.eu>",
|
|
54
|
-
"Espen Hovlandsdal <espen@hovlandsdal.com>",
|
|
55
|
-
"Sylvain Dumont <sylvain.dumont35@gmail.com>",
|
|
56
|
-
"Alun Davies <alun.owain.davies@googlemail.com>",
|
|
57
|
-
"Aidan Hoolachan <ajhoolachan21@gmail.com>",
|
|
58
|
-
"Axel Eirola <axel.eirola@iki.fi>",
|
|
59
|
-
"Freezy <freezy@xbmc.org>",
|
|
60
|
-
"Daiz <taneli.vatanen@gmail.com>",
|
|
61
|
-
"Julian Aubourg <j@ubourg.net>",
|
|
62
|
-
"Keith Belovay <keith@picthrive.com>",
|
|
63
|
-
"Michael B. Klein <mbklein@gmail.com>",
|
|
64
|
-
"Jordan Prudhomme <jordan@raboland.fr>",
|
|
65
|
-
"Ilya Ovdin <iovdin@gmail.com>",
|
|
66
|
-
"Andargor <andargor@yahoo.com>",
|
|
67
|
-
"Paul Neave <paul.neave@gmail.com>",
|
|
68
|
-
"Brendan Kennedy <brenwken@gmail.com>",
|
|
69
|
-
"Brychan Bennett-Odlum <git@brychan.io>",
|
|
70
|
-
"Edward Silverton <e.silverton@gmail.com>",
|
|
71
|
-
"Roman Malieiev <aromaleev@gmail.com>",
|
|
72
|
-
"Tomas Szabo <tomas.szabo@deftomat.com>",
|
|
73
|
-
"Robert O'Rourke <robert@o-rourke.org>",
|
|
74
|
-
"Guillermo Alfonso Varela Chouciño <guillevch@gmail.com>",
|
|
75
|
-
"Christian Flintrup <chr@gigahost.dk>",
|
|
76
|
-
"Manan Jadhav <manan@motionden.com>",
|
|
77
|
-
"Leon Radley <leon@radley.se>",
|
|
78
|
-
"alza54 <alza54@thiocod.in>",
|
|
79
|
-
"Jacob Smith <jacob@frende.me>",
|
|
80
|
-
"Michael Nutt <michael@nutt.im>",
|
|
81
|
-
"Brad Parham <baparham@gmail.com>",
|
|
82
|
-
"Taneli Vatanen <taneli.vatanen@gmail.com>",
|
|
83
|
-
"Joris Dugué <zaruike10@gmail.com>",
|
|
84
|
-
"Chris Banks <christopher.bradley.banks@gmail.com>",
|
|
85
|
-
"Ompal Singh <ompal.hitm09@gmail.com>",
|
|
86
|
-
"Brodan <christopher.hranj@gmail.com>",
|
|
87
|
-
"Ankur Parihar <ankur.github@gmail.com>",
|
|
88
|
-
"Brahim Ait elhaj <brahima@gmail.com>",
|
|
89
|
-
"Mart Jansink <m.jansink@gmail.com>",
|
|
90
|
-
"Lachlan Newman <lachnewman007@gmail.com>",
|
|
91
|
-
"Dennis Beatty <dennis@dcbeatty.com>",
|
|
92
|
-
"Ingvar Stepanyan <me@rreverser.com>",
|
|
93
|
-
"Don Denton <don@happycollision.com>"
|
|
94
|
-
],
|
|
95
|
-
"scripts": {
|
|
96
|
-
"build": "node install/build.js",
|
|
97
|
-
"install": "node install/check.js || npm run build",
|
|
98
|
-
"clean": "rm -rf src/build/ .nyc_output/ coverage/ test/fixtures/output.*",
|
|
99
|
-
"test": "npm run lint && npm run test-unit",
|
|
100
|
-
"lint": "npm run lint-cpp && npm run lint-js && npm run lint-types",
|
|
101
|
-
"lint-cpp": "cpplint --quiet src/*.h src/*.cc",
|
|
102
|
-
"lint-js": "biome lint",
|
|
103
|
-
"lint-types": "tsd --files ./test/types/sharp.test-d.ts",
|
|
104
|
-
"test-leak": "./test/leak/leak.sh",
|
|
105
|
-
"test-unit": "node --experimental-test-coverage test/unit.mjs",
|
|
106
|
-
"package-from-local-build": "node npm/from-local-build.js",
|
|
107
|
-
"package-release-notes": "node npm/release-notes.js",
|
|
108
|
-
"docs-build": "node docs/build.mjs",
|
|
109
|
-
"docs-serve": "cd docs && npm start",
|
|
110
|
-
"docs-publish": "cd docs && npm run build && npx firebase-tools deploy --project pixelplumbing --only hosting:pixelplumbing-sharp"
|
|
111
|
-
},
|
|
112
|
-
"type": "commonjs",
|
|
113
|
-
"main": "lib/index.js",
|
|
114
|
-
"types": "lib/index.d.ts",
|
|
115
|
-
"files": [
|
|
116
|
-
"install",
|
|
117
|
-
"lib",
|
|
118
|
-
"src/*.{cc,h,gyp}"
|
|
119
|
-
],
|
|
120
|
-
"repository": {
|
|
121
|
-
"type": "git",
|
|
122
|
-
"url": "git://github.com/lovell/sharp.git"
|
|
123
|
-
},
|
|
124
|
-
"keywords": [
|
|
125
|
-
"jpeg",
|
|
126
|
-
"png",
|
|
127
|
-
"webp",
|
|
128
|
-
"avif",
|
|
129
|
-
"tiff",
|
|
130
|
-
"gif",
|
|
131
|
-
"svg",
|
|
132
|
-
"jp2",
|
|
133
|
-
"dzi",
|
|
134
|
-
"image",
|
|
135
|
-
"resize",
|
|
136
|
-
"thumbnail",
|
|
137
|
-
"crop",
|
|
138
|
-
"embed",
|
|
139
|
-
"libvips",
|
|
140
|
-
"vips"
|
|
141
|
-
],
|
|
142
|
-
"dependencies": {
|
|
143
|
-
"@img/colour": "^1.0.0",
|
|
144
|
-
"detect-libc": "^2.1.2",
|
|
145
|
-
"semver": "^7.7.3"
|
|
146
|
-
},
|
|
147
|
-
"optionalDependencies": {
|
|
148
|
-
"@img/sharp-darwin-arm64": "0.34.5",
|
|
149
|
-
"@img/sharp-darwin-x64": "0.34.5",
|
|
150
|
-
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
151
|
-
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
152
|
-
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
153
|
-
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
154
|
-
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
155
|
-
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
156
|
-
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
157
|
-
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
158
|
-
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
159
|
-
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
160
|
-
"@img/sharp-linux-arm": "0.34.5",
|
|
161
|
-
"@img/sharp-linux-arm64": "0.34.5",
|
|
162
|
-
"@img/sharp-linux-ppc64": "0.34.5",
|
|
163
|
-
"@img/sharp-linux-riscv64": "0.34.5",
|
|
164
|
-
"@img/sharp-linux-s390x": "0.34.5",
|
|
165
|
-
"@img/sharp-linux-x64": "0.34.5",
|
|
166
|
-
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
167
|
-
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
168
|
-
"@img/sharp-wasm32": "0.34.5",
|
|
169
|
-
"@img/sharp-win32-arm64": "0.34.5",
|
|
170
|
-
"@img/sharp-win32-ia32": "0.34.5",
|
|
171
|
-
"@img/sharp-win32-x64": "0.34.5"
|
|
172
|
-
},
|
|
173
|
-
"devDependencies": {
|
|
174
|
-
"@biomejs/biome": "^2.3.4",
|
|
175
|
-
"@cpplint/cli": "^0.1.0",
|
|
176
|
-
"@emnapi/runtime": "^1.7.0",
|
|
177
|
-
"@img/sharp-libvips-dev": "1.2.4",
|
|
178
|
-
"@img/sharp-libvips-dev-wasm32": "1.2.4",
|
|
179
|
-
"@img/sharp-libvips-win32-arm64": "1.2.4",
|
|
180
|
-
"@img/sharp-libvips-win32-ia32": "1.2.4",
|
|
181
|
-
"@img/sharp-libvips-win32-x64": "1.2.4",
|
|
182
|
-
"@types/node": "*",
|
|
183
|
-
"emnapi": "^1.7.0",
|
|
184
|
-
"exif-reader": "^2.0.2",
|
|
185
|
-
"extract-zip": "^2.0.1",
|
|
186
|
-
"icc": "^3.0.0",
|
|
187
|
-
"jsdoc-to-markdown": "^9.1.3",
|
|
188
|
-
"node-addon-api": "^8.5.0",
|
|
189
|
-
"node-gyp": "^11.5.0",
|
|
190
|
-
"tar-fs": "^3.1.1",
|
|
191
|
-
"tsd": "^0.33.0"
|
|
192
|
-
},
|
|
193
|
-
"license": "Apache-2.0",
|
|
194
|
-
"engines": {
|
|
195
|
-
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
196
|
-
},
|
|
197
|
-
"config": {
|
|
198
|
-
"libvips": ">=8.17.3"
|
|
199
|
-
},
|
|
200
|
-
"funding": {
|
|
201
|
-
"url": "https://opencollective.com/libvips"
|
|
202
|
-
}
|
|
203
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
db52d26234270a20b5b52cfed332b20c
|
|
2
|
-
{
|
|
3
|
-
"aom": "3.13.1",
|
|
4
|
-
"archive": "3.8.2",
|
|
5
|
-
"cairo": "1.18.4",
|
|
6
|
-
"cgif": "0.5.0",
|
|
7
|
-
"exif": "0.6.25",
|
|
8
|
-
"expat": "2.7.3",
|
|
9
|
-
"ffi": "3.5.2",
|
|
10
|
-
"fontconfig": "2.17.1",
|
|
11
|
-
"freetype": "2.14.1",
|
|
12
|
-
"fribidi": "1.0.16",
|
|
13
|
-
"glib": "2.86.1",
|
|
14
|
-
"harfbuzz": "12.1.0",
|
|
15
|
-
"heif": "1.20.2",
|
|
16
|
-
"highway": "1.3.0",
|
|
17
|
-
"imagequant": "2.4.1",
|
|
18
|
-
"lcms": "2.17",
|
|
19
|
-
"mozjpeg": "0826579",
|
|
20
|
-
"pango": "1.57.0",
|
|
21
|
-
"pixman": "0.46.4",
|
|
22
|
-
"png": "1.6.50",
|
|
23
|
-
"proxy-libintl": "0.5",
|
|
24
|
-
"rsvg": "2.61.2",
|
|
25
|
-
"spng": "0.7.4",
|
|
26
|
-
"tiff": "4.7.1",
|
|
27
|
-
"vips": "8.17.3",
|
|
28
|
-
"webp": "1.6.0",
|
|
29
|
-
"xml2": "2.15.1",
|
|
30
|
-
"zlib-ng": "2.2.5"
|
|
31
|
-
}
|
package/temp/test/jest/perf-cache-502913d9c10083bec2207119c45d7122-da39a3ee5e6b4b0d3255bfef95601890
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"/Users/erik/Development/projects/fgv/prerelease/libraries/ts-extras-transformers/lib/test/unit/transformers.test.js":[1,2076]}
|