forked from kunalpanchal/secure-env
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·50 lines (50 loc) · 1.19 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
{
"name": "secure-env",
"version": "1.2.1",
"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",
"recreate-build": "npx rimraf ./dist && yarn build",
"prepublish": "yarn recreate-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/minimist": "^1.2.2",
"@types/node": "^16.10.2",
"rimraf": "^3.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"minimist": "^1.2.0"
}
}