@mrgibson/dotenv-buffer 17.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/stest.jpg ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@mrgibson/dotenv-buffer",
3
+ "version": "17.2.3",
4
+ "description": "Loads environment variables into buffer",
5
+ "main": "lib/main.js",
6
+ "types": "lib/main.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./lib/main.d.ts",
10
+ "require": "./lib/main.js",
11
+ "default": "./lib/main.js"
12
+ },
13
+ "./config": "./config.js",
14
+ "./config.js": "./config.js",
15
+ "./lib/env-options": "./lib/env-options.js",
16
+ "./lib/env-options.js": "./lib/env-options.js",
17
+ "./lib/cli-options": "./lib/cli-options.js",
18
+ "./lib/cli-options.js": "./lib/cli-options.js",
19
+ "./package.json": "./package.json"
20
+ },
21
+ "scripts": {
22
+ "dts-check": "tsc --project tests/types/tsconfig.json",
23
+ "lint": "standard",
24
+ "pretest": "npm run lint && npm run dts-check",
25
+ "test": "tap run --allow-empty-coverage --disable-coverage --timeout=60000",
26
+ "test:coverage": "tap run --show-full-coverage --timeout=60000 --coverage-report=text --coverage-report=lcov",
27
+ "prerelease": "npm test",
28
+ "release": "standard-version"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git://github.com/motdotla/dotenv.git"
33
+ },
34
+ "homepage": "https://github.com/motdotla/dotenv#readme",
35
+ "funding": "https://dotenvx.com",
36
+ "keywords": [
37
+ "dotenv",
38
+ "env",
39
+ ".env",
40
+ "environment",
41
+ "variables",
42
+ "config",
43
+ "settings"
44
+ ],
45
+ "readmeFilename": "README.md",
46
+ "license": "BSD-2-Clause",
47
+ "devDependencies": {
48
+ "@types/node": "^18.11.3",
49
+ "decache": "^4.6.2",
50
+ "sinon": "^14.0.1",
51
+ "standard": "^17.0.0",
52
+ "standard-version": "^9.5.0",
53
+ "tap": "^19.2.0",
54
+ "typescript": "^4.8.4"
55
+ },
56
+ "engines": {
57
+ "node": ">=12"
58
+ },
59
+ "browser": {
60
+ "fs": false
61
+ }
62
+ }