This repository was archived by the owner on Dec 6, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.69 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "env-native",
"version": "1.1.3",
"description": "Minimalistic, dependency-free .env loader using Node.js's native util.parseEnv. Much faster than dotenv, with CLI support.",
"keywords": [
"env",
".env",
"dotenv",
"dotenvx",
"config",
"settings",
"environment",
"variables",
"environment-variables",
"env-loader",
"dotenv-replacement",
"util.parseEnv",
"native",
"nodejs",
"zero-dependency",
"lightweight",
"minimal",
"fast",
"secure",
"env cli",
"cli"
],
"homepage": "https://github.com/sefinek/env-native#readme",
"bugs": {
"url": "https://github.com/sefinek/env-native/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sefinek/env-native.git"
},
"funding": {
"type": "individual",
"url": "https://sefinek.net/donate"
},
"license": "MIT",
"author": "Sefinek <contact@sefinek.net> (https://sefinek.net)",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index.js"
}
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"enative": "cli.js",
"env-native": "cli.js"
},
"directories": {
"example": "examples",
"test": "test"
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"up": "ncu -u && npm install && npm update && npm audit fix"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@jest/globals": "^30.1.2",
"globals": "^16.3.0",
"jest": "^30.1.3"
},
"engines": {
"node": ">=20.12.0"
}
}