UNPKG

synopt

Version:

Command line options package

58 lines (57 loc) 1.38 kB
{ "name": "synopt", "version": "0.8.1", "sideEffects": false, "description": "Command line options package", "type": "module", "main": "dist/synopt.js", "types": "dist/synopt.d.ts", "files": [ "./dist/synopt.js", "./dist/synopt.d.ts" ], "engines": { "node": ">=14" }, "scripts": { "build": "tsc --declaration", "clean": "rm -rf ./dist/*", "dev": "tsc --watch", "lint": "npx eslint ./src", "format": "prettier --config .prettierrc 'src/**/*.ts' --write", "test": "tsc --declaration && NODE_OPTIONS=--experimental-vm-modules npx jest dist" }, "keywords": [ "options", "option", "parser", "argument", "args", "argv", "cli", "flags", "shell", "command", "terminal" ], "author": "Florian Ebeling <mail@florianebeling.com>", "homepage": "https://github.com/febeling/synopt", "repository": { "type": "git", "url": "github.com:febeling/synopt" }, "license": "MIT", "devDependencies": { "@types/jest": "^29.5.11", "@typescript-eslint/eslint-plugin": "^6.13.2", "@typescript-eslint/parser": "^6.13.2", "eslint": "^8.55.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.0.1", "jest": "^29.7.0", "prettier": "^3.1.0", "typescript": "^5.3.2", "@jest/globals": "^29.7.0" }, "dependencies": {} }