MOOver.js/node_modules/dotenv/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2021-12-27 16:15:35 +00:00
{
"name": "dotenv",
2022-01-24 18:05:21 +00:00
"version": "14.2.0",
2021-12-27 16:15:35 +00:00
"description": "Loads environment variables from .env file",
"main": "lib/main.js",
2022-01-24 18:05:21 +00:00
"types": "lib/main.d.ts",
2021-12-27 16:15:35 +00:00
"exports": {
2022-01-24 18:05:21 +00:00
".": {
"require": "./lib/main.js",
"types": "./lib/main.d.ts",
"default": "./lib/main.js"
},
2021-12-27 16:15:35 +00:00
"./config": "./config.js",
"./config.js": "./config.js",
"./package.json": "./package.json"
},
"scripts": {
2022-01-24 18:05:21 +00:00
"dts-check": "tsc --project tests/types/tsconfig.json",
2021-12-27 16:15:35 +00:00
"lint": "standard",
2022-01-24 18:05:21 +00:00
"lint-readme": "standard-markdown",
"pretest": "npm run lint && npm run dts-check",
"test": "tap tests/*.js --100 -Rspec",
2021-12-27 16:15:35 +00:00
"prerelease": "npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/motdotla/dotenv.git"
},
"keywords": [
"dotenv",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"readmeFilename": "README.md",
"license": "BSD-2-Clause",
"devDependencies": {
2022-01-24 18:05:21 +00:00
"@types/node": "^17.0.9",
"decache": "^4.6.1",
"dtslint": "^3.7.0",
"sinon": "^12.0.1",
"standard": "^16.0.4",
"standard-markdown": "^7.1.0",
"standard-version": "^9.3.2",
"tap": "^15.1.6",
"typescript": "^4.5.4"
2021-12-27 16:15:35 +00:00
},
"engines": {
2022-01-24 18:05:21 +00:00
"node": ">=12"
2021-12-27 16:15:35 +00:00
}
}