UNPKG

parse-dotenv

Version:

Zero dependency .env to object parser

89 lines (88 loc) 2.35 kB
{ "name": "parse-dotenv", "version": "2.1.0", "description": "Zero dependency .env to object parser", "source": "lib/parse-dotenv.ts", "main": "dist/parse-dotenv.js", "module": "dist/parse-dotenv.mjs", "types": "dist/parse-dotenv.d.ts", "scripts": { "build": "npm run clean && babel lib -d build --extensions .ts", "bundle": "npm run build && microbundle -o dist -f es,cjs --target node --compress", "clean": "rimraf build dist", "coverage": "nyc report --reporter=text-lcov | coveralls", "test": "nyc --reporter=html --reporter=text mocha", "prepare": "npm run bundle", "release": "np" }, "repository": { "type": "git", "url": "git+https://github.com/codeshifu/parse-dotenv.git" }, "files": [ "dist", "README.md", "LICENSE.md" ], "keywords": [ "env", "env object", "parse env", "env parser", "dotenv", "dotenv parser" ], "author": "Luqman Olushi <olushilukmon03@gmail.com> (https://codeshifu.github.io/)", "license": "MIT", "bugs": { "url": "https://github.com/codeshifu/parse-dotenv/issues" }, "homepage": "https://github.com/codeshifu/parse-dotenv#readme", "devDependencies": { "@babel/cli": "7.4.3", "@babel/core": "7.4.3", "@babel/plugin-proposal-class-properties": "7.4.0", "@babel/plugin-proposal-object-rest-spread": "7.4.3", "@babel/preset-env": "7.4.3", "@babel/preset-typescript": "7.3.3", "@babel/register": "7.4.0", "@types/chai": "4.1.7", "@types/mocha": "5.2.6", "@types/sinon": "7.0.11", "@types/sinon-chai": "3.2.2", "@typescript-eslint/eslint-plugin": "1.6.0", "@typescript-eslint/parser": "1.6.0", "babel-eslint": "9.0.0", "chai": "4.2.0", "coveralls": "3.0.3", "eslint": "5.16.0", "eslint-config-airbnb": "17.1.0", "eslint-config-prettier": "4.1.0", "eslint-config-wesbos": "0.0.19", "eslint-plugin-html": "5.0.3", "eslint-plugin-import": "2.16.0", "eslint-plugin-jsx-a11y": "6.2.1", "eslint-plugin-prettier": "3.0.1", "eslint-plugin-react": "7.12.4", "eslint-plugin-react-hooks": "1.6.0", "microbundle": "0.11.0", "mocha": "6.2.2", "np": "3.1.0", "nyc": "14.1.1", "prettier": "1.16.4", "rimraf": "2.6.3", "rollup": "1.9.0", "sinon": "7.3.1", "sinon-chai": "3.3.0", "ts-node": "8.0.3", "typescript": "3.3.3" }, "nyc": { "extension": [ ".ts" ], "include": [ "**/lib/*.ts" ] } }