-
-
Notifications
You must be signed in to change notification settings - Fork 955
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.71 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
{
"name": "dotenv",
"version": "17.4.2",
"description": "Loads environment variables from .env file",
"main": "dist/index.cjs",
"bin": {
"dotenv": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./config": "./dist/config.cjs",
"./config.js": "./dist/config.cjs",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node scripts/build.js",
"dts-check": "tsc --project tests/types/tsconfig.json",
"lint": "standard",
"test": "npm run build && npm run lint && npm run dts-check && tap run tests/**/*.js --allow-empty-coverage --disable-coverage --timeout=60000",
"prepack": "npm run build",
"prepublishOnly": "npm pack --dry-run",
"prerelease": "npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/motdotla/dotenv.git"
},
"homepage": "https://github.com/motdotla/dotenv#readme",
"funding": "https://dotenvx.com",
"keywords": [
"dotenv",
"env",
".env",
"environment",
"variables",
"config",
"settings",
"env vars",
"environment variables",
"secret-management",
"secrets"
],
"readmeFilename": "README.md",
"license": "BSD-2-Clause",
"devDependencies": {
"@types/node": "^18.11.3",
"decache": "^4.6.2",
"esbuild": "^0.28.1",
"sinon": "^14.0.1",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"tap": "^21.7.4",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=12"
},
"browser": {
"fs": false
}
}