forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.51 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "@evidenceprime/convict",
"version": "6.2.7",
"description": "Featureful configuration management library for Node.js (nested structure, schema validation, etc.)",
"license": "Apache-2.0",
"homepage": "https://github.com/evidenceprime/node-convict#readme",
"repository": {
"type": "git",
"url": "https://github.com/evidenceprime/node-convict.git"
},
"bugs": {
"url": "https://github.com/evidenceprime/node-convict/issues"
},
"keywords": [
"configuration",
"config",
"conf",
"key value store",
"schema",
"nested",
"validation",
"email",
"ipaddress",
"url",
"customize",
"env",
"environment",
"json",
"yaml",
"toml"
],
"main": "src/main.js",
"exports": {
".": "./src/main.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "echo 'No build step required.'",
"test": "jest",
"posttest": "npm run lint",
"pretest:ci": "npm run lint",
"test:coverage": "jest --coverage",
"lint": "eslint --ignore-pattern='!.*.js' .",
"lint:fix": "eslint --fix --ignore-pattern='!.*.js' .",
"release": "npm run build && npm publish"
},
"dependencies": {
"lodash.clonedeep": "4.5.0",
"validator": "13.15.23",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"deep-object-diff": "1.1.9",
"eslint": "7.26.0",
"jest": "30.2.0",
"js-yaml": "4.2.0",
"json5": "2.2.3",
"toml": "3.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.12.0"
}