{
	"name": "sync-dotenv",
	"version": "2.7.0",
	"description": "Keep your .env in sync with .env.example",
	"keywords": [
		".env",
		".env.example",
		"dotenv",
		"environment variables",
		"sync env",
		"sync env.example"
	],
	"source": "lib/index.ts",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"files": [
		"dist",
		"LICENSE.md",
		"README.md"
	],
	"homepage": "https://github.com/codeshifu/sync-dotenv#readme",
	"bugs": {
		"url": "https://github.com/codeshifu/sync-dotenv/issues"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/codeshifu/sync-dotenv.git"
	},
	"license": "MIT",
	"author": "Luqman Olushi <olushilukmon03@gmail.com> (https://codeshifu.github.io/)",
	"directories": {
		"lib": "lib"
	},
	"bin": {
		"sync-dotenv": "dist/index.js"
	},
	"engines": {
		"node": ">= 16"
	},
	"scripts": {
		"add-contributor": "all-contributors add",
		"build": "npm-run-all clean start",
		"bundle": "npm-run-all clean parcel",
		"clean": "rimraf dist",
		"coverage": "nyc report --reporter=text-lcov | coveralls",
		"parcel": "parcel build",
		"release": "npm run bundle && np",
		"start": "node dist/index.js",
		"start:dev": "nodemon --watch lib -e ts --exec npm run build",
		"test": "nyc --reporter=html --reporter=text mocha",
		"test:watch": "nodemon --watch test -e .ts --exec npm test"
	},
	"devDependencies": {
		"@parcel/packager-ts": "2.3.2",
		"@parcel/transformer-typescript-types": "2.3.2",
		"@types/chai": "4.1.7",
		"@types/execa": "0.9.0",
		"@types/globby": "9.1.0",
		"@types/meow": "5.0.0",
		"@types/mocha": "5.2.6",
		"@types/sinon": "7.0.11",
		"@types/sinon-chai": "3.2.2",
		"all-contributors-cli": "6.2.0",
		"babel-eslint": "9.0.0",
		"chai": "4.2.0",
		"coveralls": "3.0.3",
		"dotenv": "7.0.0",
		"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",
		"mocha": "6.1.4",
		"nodemon": "1.18.11",
		"np": "3.1.0",
		"npm-run-all": "4.1.5",
		"nyc": "14.1.1",
		"parcel": "^2.3.2",
		"parcel-plugin-shebang": "^1.2.8",
		"prettier": "1.16.4",
		"rimraf": "2.6.3",
		"sinon": "7.3.1",
		"sinon-chai": "3.3.0",
		"ts-node": "^8.10.2",
		"typescript": "^3.9.7"
	},
	"dependencies": {
		"globby": "^9.2.0",
		"meow": "5.0.0",
		"parse-dotenv": "2.1.0",
		"pkg-conf": "^3.1.0"
	},
	"nyc": {
		"extension": [
			".ts"
		],
		"include": [
			"**/lib/*.ts"
		]
	}
}
