-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·40 lines (40 loc) · 1.06 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
{
"name": "secure-env",
"version": "1.2.0",
"description": "Use ENVs securely with encryption",
"main": "dist/es5/lib/index.js",
"preferGlobal": true,
"bin": {
"secure-env": "dist/es5/lib/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist/es5",
"build": "babel ./ --out-dir dist/es5/ --ignore ./node_modules,./.babelrc,./package.json,./package-lock.json,./npm-debug.log,./LICENSE,./README.md --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunalpanchal/secure-env.git"
},
"keywords": [
"dotenv",
"secure-env",
"encrypt-env",
"decrypt-env"
],
"author": "kunalpanchal",
"license": "ISC",
"bugs": {
"url": "https://github.com/kunalpanchal/secure-env/issues"
},
"homepage": "https://github.com/kunalpanchal/secure-env#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"rimraf": "^3.0.0"
},
"dependencies": {
"minimist": "^1.2.0"
}
}