71 lines
1.7 KiB
JSON
Executable File
71 lines
1.7 KiB
JSON
Executable File
{
|
||
"version": "1.50.1",
|
||
"name": "@dotenvx/dotenvx",
|
||
"description": "a secure dotenv–from the creator of `dotenv`",
|
||
"author": "@motdotla",
|
||
"keywords": [
|
||
"dotenv",
|
||
"env"
|
||
],
|
||
"homepage": "https://github.com/dotenvx/dotenvx",
|
||
"repository": {
|
||
"type": "git",
|
||
"url": "git+https://github.com/dotenvx/dotenvx.git"
|
||
},
|
||
"license": "BSD-3-Clause",
|
||
"files": [
|
||
"src/**/*",
|
||
"CHANGELOG.md"
|
||
],
|
||
"main": "src/lib/main.js",
|
||
"types": "src/lib/main.d.ts",
|
||
"exports": {
|
||
".": {
|
||
"types": "./src/lib/main.d.ts",
|
||
"require": "./src/lib/main.js",
|
||
"default": "./src/lib/main.js"
|
||
},
|
||
"./config": "./src/lib/config.js",
|
||
"./config.js": "./src/lib/config.js",
|
||
"./package.json": "./package.json"
|
||
},
|
||
"bin": {
|
||
"dotenvx": "./src/cli/dotenvx.js"
|
||
},
|
||
"scripts": {
|
||
"standard": "standard",
|
||
"standard:fix": "standard --fix",
|
||
"test": "tap run --allow-empty-coverage --disable-coverage --timeout=60000",
|
||
"test-coverage": "tap run --show-full-coverage --timeout=60000",
|
||
"testshell": "bash shellspec",
|
||
"prerelease": "npm test && npm run testshell",
|
||
"release": "standard-version"
|
||
},
|
||
"funding": "https://dotenvx.com",
|
||
"dependencies": {
|
||
"commander": "^11.1.0",
|
||
"dotenv": "^17.2.1",
|
||
"eciesjs": "^0.4.10",
|
||
"execa": "^5.1.1",
|
||
"fdir": "^6.2.0",
|
||
"ignore": "^5.3.0",
|
||
"object-treeify": "1.1.33",
|
||
"picomatch": "^4.0.2",
|
||
"which": "^4.0.0"
|
||
},
|
||
"devDependencies": {
|
||
"@yao-pkg/pkg": "^5.14.2",
|
||
"capture-console": "^1.0.2",
|
||
"esbuild": "^0.25.8",
|
||
"proxyquire": "^2.1.3",
|
||
"sinon": "^14.0.1",
|
||
"standard": "^17.1.0",
|
||
"standard-version": "^9.5.0",
|
||
"tap": "^21.0.1"
|
||
},
|
||
"publishConfig": {
|
||
"access": "public",
|
||
"provenance": true
|
||
}
|
||
}
|