-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 896 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": "configvention",
"version": "3.0.0",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"author": {
"name": "Joel Purra",
"email": "code+npm@joelpurra.com",
"url": "https://joelpurra.com/"
},
"homepage": "https://joelpurra.com/projects/nodejs-configvention/",
"description": "Configuration convention with a minimal readonly interface.",
"exports": "./lib/configvention.js",
"repository": {
"type": "git",
"url": "git@github.com:joelpurra/nodejs-configvention.git"
},
"directories": {
"lib": "./lib"
},
"bugs": {
"url": "https://github.com/joelpurra/nodejs-configvention/issues",
"email": "code+configvention@joelpurra.com"
},
"keywords": [
"configuration",
"convention"
],
"dependencies": {
"debug": "^4.3.4",
"nconf": "^0.11.4"
},
"license": "(MIT OR BSD-2-Clause OR GPL-3.0-or-later)"
}