oparser
Version:
A very forgiving key-value option parser
39 lines (38 loc) • 948 B
JSON
{
"name": "oparser",
"version": "3.1.0",
"description": "A very forgiving key-value option parser",
"main": "src/index.js",
"types": "types/index.d.ts",
"author": "David Wells",
"license": "MIT",
"keywords": [
"parser",
"options"
],
"files": [
"src",
"types"
],
"homepage": "https://github.com/DavidWells/oparser",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidWells/oparser.git"
},
"scripts": {
"test": "uvu src '.test.([mc]js|[jt]sx?)$'",
"types": "tsc",
"prepublishOnly": "npm run types",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"devDependencies": {
"typescript": "^5.7.2",
"uvu": "^0.5.1"
},
"dependencies": {
"json-alexander": "^0.1.14"
}
}