-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 858 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 858 Bytes
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
{
"name": "settings-lib",
"description": "Simple library allowing override capability for application settings",
"main": "./src/settings.js",
"version": "2.0.1",
"author": "Joshua Thomas (http://github.com/brozeph)",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0"
},
"keywords": [
"settings",
"config",
"override",
"twelve-factor",
"yaml",
"json",
"environment"
],
"repository": "git://github.com/brozeph/settings-lib.git",
"homepage": "http://github.com/brozeph/settings-lib",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vitest run --coverage",
"test:unit": "vitest run"
},
"dependencies": {
"yaml": "^1.10.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.2",
"vitest": "^3.2.4"
}
}