UNPKG

es-check-min

Version:

A CLI tool and library to find the minimum compatible ECMAScript version of a JavaScript file.

70 lines 1.81 kB
{ "name": "es-check-min", "version": "1.0.9", "description": "A CLI tool and library to find the minimum compatible ECMAScript version of a JavaScript file.", "keywords": [ "es-check", "cli", "version-detection", "npm-package", "ecmascript" ], "homepage": "https://github.com/kitschpatrol/es-check-min", "bugs": "https://github.com/kitschpatrol/es-check-min/issues", "repository": { "type": "git", "url": "git+https://github.com/kitschpatrol/es-check-min.git" }, "license": "MIT", "author": { "name": "Eric Mika", "email": "eric@ericmika.com", "url": "https://ericmika.com" }, "type": "module", "exports": { ".": { "types": "./dist/lib/index.d.ts", "import": "./dist/lib/index.js" } }, "main": "./dist/lib/index.js", "module": "./dist/lib/index.js", "types": "./dist/lib/index.d.ts", "bin": { "es-check-min": "dist/bin/cli.js" }, "files": [ "dist/*" ], "dependencies": { "@types/node": "^20.19.24", "@types/yargs": "^17.0.34", "es-check": "^9.4.4", "execa": "^9.6.0", "pkg-types": "^2.3.0", "yargs": "^17.7.2" }, "devDependencies": { "@kitschpatrol/shared-config": "^5.8.1", "bumpp": "^10.3.1", "mdat-plugin-cli-help": "^1.0.2", "pkgroll": "^2.20.1", "typescript": "~5.9.3", "vitest": "^4.0.7" }, "engines": { "node": ">=20.19.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "pkgroll --clean-dist --tsconfig ./tsconfig.build.json", "clean": "git rm -f pnpm-lock.yaml ; git clean -fdX", "fix": "ksc fix", "lint": "ksc lint", "release": "bumpp --commit 'Release: %s' && pnpm run build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish", "test": "vitest" } }