promisified-properties
Version:
Handle .properties file via promisified and typed API
59 lines (58 loc) • 1.3 kB
JSON
{
"name": "promisified-properties",
"version": "3.0.0",
"description": "Handle .properties file via promisified and typed API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"docs": "typedoc src",
"prepack": "tsc",
"test": "vitest",
"prepare": "husky install"
},
"files": [
"README.md",
"LICENSE",
"lib"
],
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/KengoTODA/promisified-properties.git"
},
"keywords": [
"properties",
"parser"
],
"author": "Kengo TODA",
"license": "MIT",
"bugs": {
"url": "https://github.com/KengoTODA/promisified-properties/issues"
},
"homepage": "https://github.com/KengoTODA/promisified-properties#readme",
"dependencies": {
"parsimmon": "^1.13.0"
},
"engines": {
"node": ">=18",
"npm": ">=7.12"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@types/parsimmon": "^1.10.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"semantic-release": "^22.0.10",
"tmp-promise": "^3.0.2",
"typedoc": "^0.25.3",
"typescript": "^5.0.4",
"vitest": "^1.0.4"
},
"lint-staged": {
"*.ts": "prettier --write"
},
"publishConfig": {
"access": "public"
}
}