forked from node-config/node-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "config",
"version": "5.0.0-alpha.1",
"main": "./lib/config.js",
"module": "./lib/config.mjs",
"types": "types/lib/config.d.ts",
"typesVersions": {
"*": {
"parser": [
"types/parser.d.ts"
],
"parser.js": [
"types/parser.d.ts"
],
"lib/defer": [
"types/lib/defer.d.ts"
],
"lib/defer.js": [
"types/lib/defer.d.ts"
],
"lib/util": [
"types/lib/util.d.ts"
],
"lib/util.js": [
"types/lib/util.d.ts"
]
}
},
"description": "Configuration control for production node deployments",
"author": "Loren West <open_source@lorenwest.com>",
"homepage": "http://github.com/node-config/node-config.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"conf",
"config",
"configuration",
"node-config",
"config-node",
"env",
"environment"
],
"directories": {
"lib": "./lib"
},
"license": "MIT",
"dependencies": {
"json5": "^2.2.3"
},
"devDependencies": {
"@types/node": "^20.11.30",
"c8": "^10.1.3",
"coffeescript": "2.2.4",
"cson": "^3.0.1",
"faceoff": "^1.3.0",
"hjson": "^1.2.0",
"properties": "~1.2.1",
"request": "^2.88.2",
"semver": "5.3.0",
"toml": "^2.0.6",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"underscore": "^1.8.3",
"x2js": "^2.0.1",
"yaml": "^2.8.2"
},
"repository": {
"type": "git",
"url": "http://github.com/node-config/node-config.git"
},
"engines": {
"node": ">= 20.11.0"
},
"c8": {
"include": [
"*.js",
"lib/**/*.js"
],
"report-dir": "./coverage",
"reporter": "lcov"
},
"scripts": {
"build:types": "tsc -p tsconfig.json",
"checkTypes": "npx -y @arethetypeswrong/cli --pack .",
"types": "npm run build:types && npm run checkTypes",
"prepublishOnly": "npm run build:types",
"ci": "npm run types && npm run test",
"test": "c8 node --no-experimental-strip-types --test",
"benchmarks": "node --allow-natives-syntax --expose-gc benchmarks/index.js"
}
}