-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 868 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
{
"name": "config-discovery",
"version": "1.0.0",
"description": "A simple JSON configuration loading and compositing utility.",
"main": "index.js",
"scripts": {
"test": "c8 --reporter=lcov mocha test/test.js -r dotenv/config",
"submit-coverage": "codecov --disable=gcov"
},
"devDependencies": {
"mocha": "^9.1.1",
"c8": "^7.8.0",
"codecov": "^3.8.3",
"dotenv": "^10.0.0",
"properties": "^1.2.1"
},
"dependencies": {
"yaml": "^1.10.2"
},
"keywords": [
"config",
"configmap",
"secret",
"kubernetes",
"chain",
"discovery",
"container",
"docker"
],
"repository": {
"type": "git",
"url": "https://github.com/SiegfredRodriguez/config-chain.git"
},
"author": "J-dar Siegefred Rodriguez <[email protected]> (https://codegallery.io)",
"license": "Apache-2.0"
}