Files
klz-cables.com/.pnpm-store/v10/files/c2/fa0a85fa33e07657a3ace91df6739bea1fbee10dda0c4c08992dfdca9294b390509c022ec5b8bdbce07eec73abc1013f7fdf40e2363af4605e0f01a3c78f4f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

39 lines
1.1 KiB
Plaintext

{
"name": "dateformat",
"description": "A node.js package for Steven Levithan's excellent dateFormat() function.",
"maintainers": [
"Felix Geisendörfer <felix@debuggable.com>"
],
"homepage": "https://github.com/felixge/node-dateformat",
"author": "Steven Levithan",
"contributors": [
"Steven Levithan",
"Felix Geisendörfer <felix@debuggable.com>",
"Christoph Tavan <dev@tavan.de>",
"Jon Schlinkert (https://github.com/jonschlinkert)"
],
"version": "4.6.3",
"license": "MIT",
"main": "lib/dateformat",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"mocha": "^8.2.1",
"uglify-js": "^3.12.5"
},
"engines": {
"node": "*"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib && uglifyjs lib/dateformat.js -o lib/dateformat.js",
"test": "npm run build && mocha",
"benchmark": "npm run build && node ./benchmark/benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/felixge/node-dateformat.git"
},
"dependencies": {}
}