UNPKG

key-value-file

Version:

A simple key/value file parser/writer

71 lines (70 loc) 1.71 kB
{ "name": "key-value-file", "version": "1.0.10", "description": "A simple key/value file parser/writer", "main": "dist/key-value-file.js", "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "test": "jest && exit 0", "clean": "rimraf dist", "dev": "tsc -w", "build": "yarn run clean && tsc", "bump": "yarn version --patch -m 'Bumping version to %s'", "pub": "yarn build && yarn test && yarn publish", "lint": "yarn eslint src/**/*.ts --quiet" }, "repository": { "type": "git", "url": "git+https://github.com/poppa/key-value-file.git" }, "keywords": [ "keyvalue", "keyvalue-file", "parser", "env", ".env", "dotenv", "dotenv-parser", "environment", "environment-file" ], "author": { "name": "Pontus Östlund", "email": "poppanator@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/poppa/key-value-file/issues" }, "homepage": "https://github.com/poppa/key-value-file#readme", "devDependencies": { "@types/jest": "^26.0.13", "@types/node": "^14.10.1", "@typescript-eslint/eslint-plugin": "^4.1.1", "@typescript-eslint/parser": "^4.1.1", "eslint": "^7.9.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-react": "^7.20.6", "husky": "^4.3.0", "jest": "^26.4.2", "prettier": "^2.1.1", "pretty-quick": "^3.0.2", "rimraf": "^3.0.2", "ts-jest": "^26.3.0", "typescript": "^4.0.2" }, "dependencies": { "string-walker": "^1.0.7", "tslib": "^2.4.0" }, "husky": { "hooks": { "pre-commit": "yarn lint && pretty-quick --staged" } } }