-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 979 Bytes
/
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": "env-credentials",
"version": "0.0.4",
"description": "App secret configuration and environment variables manager",
"engines": {
"node": ">=8.10.0"
},
"repository": "https://github.com/EloquentStudio/env-credentials.git",
"homepage": "https://github.com/EloquentStudio/env-credentials",
"main": "src/index.js",
"scripts": {
"lint": "gts check && eslint '**/*.js'",
"test": "mocha test",
"docs": "jsdoc -c .jsdoc.js"
},
"keywords": [
"config",
"secret-manager",
"credentials",
"env-vars"
],
"author": "Jiren Patel",
"license": "MIT",
"bin": {
"env-credentials": "./bin/cli.js"
},
"dependencies": {
"tmp": "^0.2.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jsdoc": "^3.6.4",
"mocha": "^7.1.2"
}
}