-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@mikegarde/dotenv-cli",
"version": "1.0.0",
"description": "Read and update dotenv files from the cli",
"bin": {
"dotenv": "./bin/dotenv"
},
"type": "module",
"files": [
"bin/",
"postinstall.js",
"vendor/"
],
"scripts": {
"build": "cargo build --release",
"test": "cargo clippy --all-targets --all-features -- -D warnings && cargo test --all-features",
"pack:dry-run": "npm pack --dry-run",
"publish:npm": "npm publish --access public --registry https://registry.npmjs.org",
"publish:github": "npm publish --registry https://npm.pkg.github.com",
"postinstall": "node ./postinstall.js"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeGarde/dotenv.git"
},
"keywords": [
"dotenv",
"cli",
"env",
".env",
"DevOps"
],
"author": "Mike Garde",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MikeGarde/dotenv/issues"
},
"homepage": "https://github.com/MikeGarde/dotenv#readme",
"dependencies": {
"tar": "^7.5.13"
}
}