-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "@awesomeeng/awesome-config",
"version": "1.3.0",
"author": "the awesome engineering company",
"license": "MIT",
"contributors": [
"Glen R. Goodwin"
],
"main": "./src/AwesomeConfig.js",
"engines": {
"node": ">=10.5.0"
},
"dependencies": {
"@awesomeeng/awesome-log": "^3.2.2",
"@awesomeeng/awesome-utils": "^1.5.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.4.0"
},
"optionalDependencies": {},
"scripts": {
"lint": "eslint src examples test",
"docs": "jsdoc2md src/** --separators > docs/API.md",
"test": "mocha test",
"tests": "mocha test"
},
"description": "AwesomeConfig is a powerful configuration system for building enterprise node.js application. It provides a unified transparent configuration object to your application based on configuration files or objects that you define. It includes support for conditional configuration based on external values like environment variables, hostname, or OS; variables to reference one part of your configuration from another; and lots more.",
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awesomeeng/awesome-config.git"
},
"keywords": [
"awesome",
"awesomeeng",
"awesome",
"engineering"
],
"bugs": {
"url": "https://github.com/awesomeeng/awesome-config/issues"
},
"homepage": "https://github.com/awesomeeng/awesome-config#readme"
}