-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "schluessel",
"version": "1.0.4",
"description": "Rails like credentials store for database passwords, API keys, etc. encrypted in your repository.",
"type": "commonjs",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./ecma-index.mjs"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"test": "npm run lint && NODE_ENV=testing node test.js"
},
"bin": "cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Pik-9/schluessel.git"
},
"files": [
"src/*",
"cli.js",
"index.js",
"ecma-index.mjs",
"README.md",
"LICENSE"
],
"keywords": [
"schluessel",
"credentials",
"secret",
"secrets",
"password",
"key",
"vault",
"encrypted",
"rails"
],
"author": "Daniel Steinhauer",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Pik-9/schluessel/issues"
},
"homepage": "https://github.com/Pik-9/schluessel#readme",
"dependencies": {
"app-root-path": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}