UNPKG

@keg-hub/parse-config

Version:

Utils to allow loading non-javascript files into a node environment

55 lines 1.57 kB
{ "name": "@keg-hub/parse-config", "version": "2.2.0", "description": "Utils to allow loading non-javascript files into a node environment", "repository": "https://github.com/keg-hub/keg-cli/tree/master/repos/parse-config", "main": "index.js", "author": "Lance Tipton", "license": "MIT", "private": false, "files": [ "index.js", "src/", "!__mocks__", "!__tests__", "README.md" ], "keywords": [ "env", "yml", "yaml", "rc", "file-loader", "keg-hub", "keg-cli", "node", "cli" ], "publishConfig": { "access": "public" }, "dependencies": { "@keg-hub/jsutils": ">=9.6.1", "app-root-path": "3.0.0", "js-yaml": "3.14.1", "write-yaml-file": "4.2.0" }, "devDependencies": { "babel-eslint": "10.1.0", "eslint": "7.4.0", "eslint-plugin-jest": "23.18.0", "jest": "27.3.1", "prettier": "2.0.5", "rimraf": "3.0.2" }, "scripts": { "build": "exit 0", "clean:full": "yarn clean && yarn install", "clean": "yarn clean:lock && yarn cache clean && rimraf node_modules && npm cache clean --force", "clean:lock": "rimraf ./yarn.lock && rimraf ./package.lock", "format:eslint": "eslint --config ./configs/eslintrc.config.js . --fix --quiet", "format:prettier": "prettier --config ./configs/prettier.config.js --ignore-path .eslintignore --write '**/*.{js,jsx}'", "format": "yarn format:prettier && yarn format:eslint", "test": "NODE_ENV=test jest --no-cache --verbose --config=./configs/jest.config.js --maxWorkers=50%" } }