UNPKG

curli-config

Version:

A small library to load/validate configuration files placed in different sides of the application using environments

72 lines (71 loc) 1.98 kB
{ "name": "curli-config", "version": "0.0.2", "description": "A small library to load/validate configuration files placed in different sides of the application using environments", "main": "index", "scripts": { "build:clean": "npm run clean && npm run build", "build": "tsc", "clean": "rimraf ./dist", "test": "mocha -r ts-node/register src/__tests__/unit/*.test.ts", "test:coverage": "nyc -r lcov -e .ts -x \"src/__tests__/unit/*.test.ts\" npm run test", "lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"", "lint:fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\"" }, "repository": { "type": "git", "url": "git+https://github.com/CarlosCraviotto/curli-config.git" }, "keywords": [ "conf", "config", "configuration", "node config", "config node", "envenvironment", "typescript", "javascript" ], "engines": { "node": ">= 6.0.0" }, "files": [ "README.md", "LICENSE", ".eslintrc.js", ".eslintignore", "index.js", "index.ts", "dist", "src", "!*/__tests__" ], "author": "Carlos Juan Craviotto", "license": "MIT", "bugs": { "url": "https://github.com/CarlosCraviotto/curli-config/issues" }, "homepage": "https://github.com/CarlosCraviotto/curli-config#readme", "dependencies": { "ajv": "^6.12.0" }, "devDependencies": { "@types/mocha": "7.0.2", "@types/node": "^13.11.0", "@typescript-eslint/eslint-plugin": "^2.6.0", "@typescript-eslint/parser": "^2.6.0", "@types/chai": "^4.2.11", "chai": "^4.2.0", "eslint": "^6.6.0", "eslint-config-prettier": "^6.5.0", "eslint-plugin-prettier": "^3.1.1", "eslint-plugin-mocha": "^6.3.0", "nyc": "^15.0.0", "coveralls": "^3.0.11", "prettier": "^2.0.3", "rimraf": "^3.0.0", "mocha": "^7.1.1", "ts-node": "^8.8.1", "typescript": "^3.1.6" } }