-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
{
"name": "dotenv-extended",
"version": "3.1.0",
"description": "A module for loading .env files and optionally loading defaults and a schema for validating all values are present.",
"repository": "git@github.com:keithmorris/node-dotenv-extended.git",
"main": "lib/index.js",
"types": "dotenv-extended.d.ts",
"bin": {
"dotenv-extended": "lib/bin/cli.js",
"dee": "lib/bin/cli.js"
},
"exports": {
".": {
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./config": "./config.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"config.js",
"dotenv-extended.d.ts",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.js src/config.js src/bin/index.js src/bin/cli.js --format cjs --target node20 --out-dir lib --clean",
"test": "vitest run --coverage",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npm run build",
"check": "npm run lint && npm run format:check && npm run test"
},
"keywords": [
"dotenv",
"environment"
],
"author": "Keith Morris <standupbass@gmail.com> (http://standupbass.wordpress.com/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"dotenv": "^16.6.1"
}
}