-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "envpack",
"version": "1.0.20",
"description": "Envpack lets you share dotenv file with your teammates with one simple command.",
"main": "./dist/main.js",
"bin": {
"envpack": "dist/main.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"premake": "yarn build",
"make": "nexe --build -o build/envpack dist/main.js --name envpack",
"make:win": "yarn make --target windows",
"make:mac": "yarn make --target mac",
"make:lin": "yarn make --target linux",
"postinstall": "node dist/lib/commands/postinstall.js"
},
"keywords": [
"dotenv",
"backup",
"environment",
"env",
"dotfile",
"dots",
"variables",
"vars",
".env",
"config",
"settings",
"process.env",
"compress",
"extract"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fdorantesm/envpack.git"
},
"homepage": "https://envpack.dorantes.dev/",
"author": "Fernando Dorantes",
"contributors": [
"Fernando Dorantes <fdorantesm@gmail.com> (https://dorant.es)"
],
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"extract-zip": "^2.0.1",
"glob": "^7.2.0",
"node-emoji": "^1.11.0",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"zip-a-folder": "^1.1.0"
},
"devDependencies": {
"nexe": "^4.0.0-beta.19",
"nodemon": "^2.0.14",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/fdorantesm/envpack/issues"
}
}