settingz
Version:
Dead simple config loader
58 lines • 1.29 kB
JSON
{
"name": "settingz",
"version": "0.2.0",
"description": "Dead simple config loader",
"license": "MIT",
"author": {
"name": "Eric",
"email": "airkro@qq.com"
},
"keywords": [
"config",
"package",
"utils"
],
"homepage": "https://github.com/airkro/settingz",
"repository": {
"type": "git",
"url": "https://github.com/airkro/settingz.git"
},
"bugs": {
"url": "https://github.com/airkro/settingz/issues"
},
"module": "index.mjs",
"main": "index.cjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"./*": "./*"
},
"files": [
"index.mjs"
],
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@nice-move/cli": "^0.7.2",
"@nice-move/eslint-config-base": "^0.6.9",
"@nice-move/prettier-config": "^0.5.4",
"eslint": "^8.14.0",
"garou": "^0.4.6",
"prettier": "^2.6.2"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || ^16.13.0 || >=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"prettier": "@nice-move/prettier-config"
}