-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.28 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
67
68
69
{
"name": "dotenv-packed",
"version": "3.1.0",
"description": "All-in-one pack to load environment variables from .env file, then expand and convert them. Powered by `dotenv`/`dotenv-flow`, `dotenv-expand` and `dotenv-conversion`.",
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./config": "./config.js",
"./config.js": "./config.js",
"./dist/env-options": "./dist/env-options.js",
"./dist/env-options.js": "./dist/env-options.js",
"./dist/cli-options": "./dist/cli-options.js",
"./dist/cli-options.js": "./dist/cli-options.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "babel ./src -d ./dist -D --delete-dir-on-start",
"test": "nyc mocha ./tests --require @babel/register",
"test:report": "nyc report --reporter=text-lcov",
"test:publish": "npm run test:report | coveralls",
"ci": "npm i && npm run build && npm test",
"cia": "npm run ci && npm run test:publish",
"cd": "npm run ci && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/linhntaim/dotenv-packed.git"
},
"keywords": [
"env",
".env",
"environment",
"variables",
"dotenv",
"dotenv-flow",
"dotenv-expand",
"expand",
"dotenv-conversion",
"convert",
"dotenv-packed",
"pack"
],
"author": "Nguyen Tuan Linh <contact@linhntaim.com> (https://www.linhntaim.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/linhntaim/dotenv-packed/issues"
},
"homepage": "https://github.com/linhntaim/dotenv-packed#readme",
"dependencies": {
"dotenv": "^16.3.1",
"dotenv-conversion": "^3.1.0",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.22.15",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.10",
"coveralls-next": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}