68 lines
1.4 KiB
JSON
68 lines
1.4 KiB
JSON
|
|
{
|
||
|
|
"name": "auto-config-loader",
|
||
|
|
"version": "2.0.2",
|
||
|
|
"description": "Find and load configuration from a package.json property, rc file, or CommonJS module.",
|
||
|
|
"main": "./lib/index.js",
|
||
|
|
"type": "commonjs",
|
||
|
|
"types": "./lib/index.d.ts",
|
||
|
|
"exports": {
|
||
|
|
".": "./lib/index.js",
|
||
|
|
"./load-conf": "./lib/loader/js.js"
|
||
|
|
},
|
||
|
|
"homepage": "https://jaywcjlove.github.io/auto-config-loader",
|
||
|
|
"funding": "https://jaywcjlove.github.io/#/sponsor",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/jaywcjlove/auto-config-loader.git"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"rc",
|
||
|
|
"config",
|
||
|
|
"loader",
|
||
|
|
"load",
|
||
|
|
"configuration",
|
||
|
|
"cjs",
|
||
|
|
"commonjs",
|
||
|
|
"esm",
|
||
|
|
"es module",
|
||
|
|
"yml-config",
|
||
|
|
"js-config",
|
||
|
|
"ts-config",
|
||
|
|
"toml-config",
|
||
|
|
"yml",
|
||
|
|
"js",
|
||
|
|
"ts",
|
||
|
|
"toml",
|
||
|
|
"typescript",
|
||
|
|
"config-loader",
|
||
|
|
"auto-config-loader"
|
||
|
|
],
|
||
|
|
"author": "jaywcjlove",
|
||
|
|
"license": "MIT",
|
||
|
|
"files": [
|
||
|
|
"load-conf.d.ts",
|
||
|
|
"lib",
|
||
|
|
"src"
|
||
|
|
],
|
||
|
|
"jest": {
|
||
|
|
"transformIgnorePatterns": [
|
||
|
|
"<rootDir>/node_modules/?!(.*)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=16.0.0"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"ini": "^5.0.0",
|
||
|
|
"jiti": "^2.4.1",
|
||
|
|
"jsonc-eslint-parser": "^2.3.0",
|
||
|
|
"lodash.merge": "^4.6.2",
|
||
|
|
"sucrase": "^3.35.0",
|
||
|
|
"toml-eslint-parser": "^0.10.0",
|
||
|
|
"yaml-eslint-parser": "^1.2.2"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/ini": "^4.0.0",
|
||
|
|
"@types/lodash.merge": "^4.6.7"
|
||
|
|
}
|
||
|
|
}
|