UNPKG

@node-minify/babel-minify

Version:
62 lines 1.5 kB
{ "name": "@node-minify/babel-minify", "version": "9.0.1", "description": "babel-minify plugin for @node-minify", "keywords": [ "compressor", "minify", "minifier", "babel-minify" ], "author": "Rodolphe Stoclin <srodolphe@gmail.com>", "homepage": "https://github.com/srod/node-minify/tree/master/packages/babel-minify#readme", "license": "MIT", "engines": { "node": ">=18.0.0" }, "directories": { "lib": "dist", "test": "__tests__" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist/**/*" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/srod/node-minify.git" }, "bugs": { "url": "https://github.com/srod/node-minify/issues" }, "dependencies": { "babel-core": "6.26.3", "babel-preset-minify": "0.5.2", "@node-minify/utils": "9.0.1" }, "devDependencies": { "@types/babel-core": "^6.25.7", "babel-preset-env": "1.7.0", "@node-minify/types": "9.0.0" }, "scripts": { "clean": "pnpm dlx rimraf dist", "build": "pnpm clean && tsup src/index.ts --format cjs,esm --dts --clean --sourcemap", "lint": "biome lint .", "test": "vitest run", "test:ci": "vitest run --coverage", "test:watch": "vitest" } }