-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.26 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
{
"name": "@codedv8/dynamicconfig",
"version": "2.8.0",
"description": "Dynamic configuration storage that can use files and/or environment. Different sets of configuration can be used. Configuration files can have a fallback configuration file. Getting values from the configuration can have a default value or can throw an error if not found.",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run lint && npm run test && npm run minify",
"clean": "rm -rf index.min.js",
"lint": "eslint index.js",
"minify": "uglifyjs index.js -o index.min.js -c -m",
"test": "mocha --recursive 'tests/*.test.js' --timeout 15000 --exit",
"test:coverage": "nyc npm test",
"example:basic": "node example/basic.js",
"example:basic:env": "NODE_ENV=development node example/basic.js",
"example:basic:ini": "CONFIG_TYPE=ini node example/basic.js",
"example:basic:env:ini": "NODE_ENV=production CONFIG_TYPE=ini node example/basic.js",
"example:chain": "node example/chain.js",
"example:envpopulate": "CONFIG_PATH=./example/ CONFIG_FILE=envpopulate.json node example/envpopulate.js",
"example:fuse": "node example/fuse.js",
"example:fuse2": "node example/fuse2.js",
"example:merge": "node example/merge.js",
"example:multiple": "node example/multiple.js",
"example:setconfig": "node example/setconfig.js",
"example:setconfig2": "node example/setconfig2.js",
"example:totype": "node example/totype.js",
"examples": "npm run example:basic && npm run example:basic:env && npm run example:basic:ini && npm run example:basic:env:ini && npm run example:envpopulate && npm run example:fuse && npm run example:merge && npm run example:multiple && npm run example:setconfig && npm run example:setconfig2 && npm run example:totype"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codedeviate/dynamicconfig.git"
},
"homepage": "https://github.com/codedeviate/dynamicconfig",
"keywords": [
"config",
"environment",
"dynamic",
"env",
"file",
"json",
"ini"
],
"author": "Thomas Björk",
"email": "codedv8@gmail.com",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}