forked from johannbuscail/secure-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.31 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
{
"name": "secure-env-ts",
"version": "1.3.4",
"description": "Use ENVs securely with encryption",
"license": "MIT",
"author": "kunalpanchal",
"contributors": [
{
"name": "yoyo1234",
"email": "[email protected]",
"url": "https://github.com/johannb75"
}
],
"main": "dist/index.js",
"bin": {
"secure-env": "dist/cli.js"
},
"scripts": {
"test": "cd ./test && ts-node ./index.ts",
"test:secure-env": "cd ./test && ../dist/cli.js -s mySecret",
"watch-build": "tsc --watch",
"build": "tsc",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunalpanchal/secure-env.git"
},
"bugs": {
"url": "https://github.com/kunalpanchal/secure-env/issues"
},
"homepage": "https://github.com/kunalpanchal/secure-env#readme",
"keywords": [
"dotenv",
"secure-env",
"encrypt-env",
"decrypt-env"
],
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/diff": "^5.0.1",
"@types/inquirer": "^8.1.3",
"@types/minimist": "^1.2.2",
"@types/node": "^16.10.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"colorette": "^2.0.16",
"command-exists": "^1.2.9",
"diff": "^5.0.0",
"inquirer": "^8.2.0",
"minimist": "^1.2.0"
}
}