minimal-mistakes/package-lock.json
iBug 0b8b5230f9 Migrate npm run scripts to Rakefile tasks
Rakefile is like Makefile - it has dependency management,
while npm run scripts do not.

Aside from that, this also allows us to drop literally all Node.js packages,
as uglify-js is self-contained and has no dependencies.
Reduced node_modules from 17M to 374K.
2024-05-05 04:03:07 +08:00

32 lines
740 B
JSON

{
"name": "minimal-mistakes",
"version": "4.25.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "minimal-mistakes",
"version": "4.25.1",
"license": "MIT",
"devDependencies": {
"uglify-js": "^3.17.4"
},
"engines": {
"node": ">= 0.10.0"
}
},
"node_modules/uglify-js": {
"version": "3.17.4",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz",
"integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==",
"dev": true,
"bin": {
"uglifyjs": "bin/uglifyjs"
},
"engines": {
"node": ">=0.8.0"
}
}
}
}