-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
104 lines (104 loc) · 2.56 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "dotenv-vault",
"version": "1.26.2",
"description": "A secrets manager for .env files – from the same people that pioneered dotenv.",
"author": "Mot @dotenvorg",
"bin": {
"dotenv-vault": "./bin/run"
},
"homepage": "https://github.com/dotenv-org/dotenv-vault",
"license": "MIT",
"main": "dist/index.js",
"repository": "dotenv-org/dotenv-vault",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1",
"@oclif/plugin-help": "^5.2.15",
"@oclif/plugin-not-found": "^2.3.34",
"@oclif/plugin-update": "^3.1.16",
"@oclif/plugin-warn-if-update-available": "^2.0.46",
"axios": "^1.6.7",
"chalk": "^4.1.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.11",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"fs-monkey": "^1.0.4",
"globby": "^11",
"jest": "^27.5.1",
"memfs": "^3.5.1",
"mocha": "^9",
"oclif": "^2",
"shx": "^0.3.4",
"sinon": "^13.0.2",
"spyfs": "^1.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "4.9.5"
},
"oclif": {
"bin": "dotenv-vault",
"dirname": "dotenv-vault",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-update",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 1
},
"topicSeparator": " ",
"topics": {
"local": {
"description": "[DEPRECATED][Switch to dotenvx: github.com/dotenvx/dotenvx] Local only commands"
}
},
"update": {
"node": {
"version": "16.15.1"
},
"s3": {
"xz": true,
"host": "https://dotenv-vault-assets.dotenv.org",
"bucket": "dotenv-vault"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest",
"test": "tsc -b && mocha --forbid-only \"test/**/*.test.ts\""
},
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/dotenv-org/dotenv-vault/issues",
"keywords": [
"dotenv",
"dotenv-vault",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"types": "dist/index.d.ts"
}