forked from kerimdzhanov/dotenv-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
{
"name": "dotenv-flow",
"version": "4.1.0",
"description": "Loads environment variables from `.env.[development|test|production][.local]` files",
"keywords": [
"dotenv",
"node_env",
"development",
"test",
"production",
"local",
"env",
"environment",
"variables"
],
"homepage": "https://github.com/kerimdzhanov/dotenv-flow#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kerimdzhanov/dotenv-flow.git"
},
"bugs": {
"url": "https://github.com/kerimdzhanov/dotenv-flow/issues"
},
"main": "lib/dotenv-flow.js",
"types": "lib/dotenv-flow.d.ts",
"exports": {
".": "./lib/dotenv-flow.js",
"./config": {
"require": "./config.js",
"node": "./config.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/cli-options.js",
"lib/dotenv-flow.d.ts",
"lib/env-options.js",
"config.d.ts",
"config.js"
],
"dependencies": {
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.6.2",
"chai": "^4.3.7",
"conventional-changelog-cli": "^2.0.35",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"tmp": "^0.2.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "yarn run test:unit && yarn run test:integration && yarn run test:types",
"test:unit": "mocha -r mocha.conf.js test/unit/*.spec.js",
"test:integration": "mocha -r mocha.conf.js test/integration/*.spec.{m,}js",
"test:types": "tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "Dan Kerimdzhanov",
"license": "MIT"
}