forked from rolodato/dotenv-safe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 KB
/
package.json
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
{
"name": "dotenv-safest",
"version": "1.1.1",
"description": "Load environment variables from .env and ensure they are defined",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"exports": {
".": {
"import": "./lib/main.js",
"types": "./lib/main.d.ts",
"require": "./lib/main.js",
"default": "./lib/main.js"
},
"./config": "./config.js",
"./config.js": "./config.js",
"./lib/main.js": "./lib/main.js",
"./lib/config.js": "./lib/config.js"
},
"keywords": [
"dotenv",
"dotenv-safe",
"dotenv-safest",
"dotenv-safer",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"license": "MIT",
"author": "Gabriel Lisboa <gabriellisboa.rx@gmail.com>",
"files": [
"index.js",
"config.js",
"lib/*"
],
"repository": {
"type": "git",
"url": "git://github.com/tenlisboa/dotenv-safest.git"
},
"scripts": {
"pretest": "./node_modules/eslint/bin/eslint.js *.js test/.",
"test": "HELLO=fromTheOtherSide mocha"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.44.0",
"fs-extra": "^11.1.1",
"lodash.clonedeep": "^4.5.0",
"mocha": "^10.2.0"
}
}