-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.57 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
{
"name": "ms-conf",
"version": "8.2.1",
"description": "wrapper over dotenv and nconf module for one line configuration loading",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/.index.mjs",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/.index.mjs"
},
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"prepublishOnly": "rimraf ./lib; pnpm compile",
"compile": "tsc -b tsconfig.cjs.json tsconfig.types.json && gen-esm-wrapper . ./lib/esm/.index.mjs",
"test": "pnpm compile && pnpm lint && pnpm test:cjs && pnpm test:esm",
"test:cjs": "cross-env NODE_ENV=test DEBUG=ms-conf c8 mocha -r @swc-node/register ./test/**.spec.ts",
"test:esm": "cross-env SWC_NODE_PROJECT=\"./tsconfig.tests-esm.json\" NODE_OPTIONS=\"--loader=@swc-node/register/esm\" NODE_ENV=test c8 mocha ./test/**.spec.mts",
"lint": "eslint --ext .ts,.js ./src ./test/**.spec.ts",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"keywords": [
"configuration",
"nconf",
"env",
"docker"
],
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/ms-conf.git"
},
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-conf/issues"
},
"homepage": "https://github.com/makeomatic/ms-conf#readme",
"devDependencies": {
"@makeomatic/deploy": "^12.11.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@swc-node/register": "^1.6.6",
"@types/debug": "^4.1.8",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/nconf": "^0.10.3",
"@types/node": "^20.3.1",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"bluebird": "^3.7.2",
"c8": "^8.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.43.0",
"eslint-config-makeomatic": "^5.0.2",
"eslint-plugin-mocha": "^10.1.0",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^10.2.0",
"semantic-release": "^21.0.5",
"sinon": "^15.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@fastify/deepmerge": "^1.3.0",
"@makeomatic/confidence": "6.0.3",
"camelcase": "^6.0.0",
"debug": "^4.1.0",
"dotenv": "^16.0.3",
"eventemitter3": "^5.0.1",
"glob": "^10.3.0",
"nconf": "^0.12.0",
"secure-json-parse": "^2.7.0"
},
"optionalDependencies": {
"synchronous-worker": "^1.0.5"
}
}