Files
codeql-action/node_modules/pkg-conf/package.json
2022-02-24 17:03:29 +00:00

53 lines
993 B
JSON

{
"name": "pkg-conf",
"version": "4.0.0",
"description": "Get namespaced config from the closest package.json",
"license": "MIT",
"repository": "sindresorhus/pkg-conf",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"json",
"read",
"parse",
"file",
"fs",
"graceful",
"load",
"package",
"config",
"configuration",
"object",
"namespace",
"namespaced"
],
"dependencies": {
"find-up": "^6.0.0",
"load-json-file": "^7.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"tsd": "^0.17.0",
"xo": "^0.44.0"
},
"fixture": {
"foo": true
}
}