UNPKG

yaml-js-include

Version:

Extension for yaml-js library to be able to include files/directories in yaml files

49 lines (48 loc) 1.3 kB
{ "name": "yaml-js-include", "version": "1.0.0", "description": "Extension for yaml-js library to be able to include files/directories in yaml files", "main": "build/index.js", "types": "build/index.d.ts", "repository": "https://github.com/dbondarchuk/yaml-js-include", "author": "Dmytro Bondarchuk", "license": "MIT", "keywords": [ "yaml", "include", "modular", "js-yaml", "js-yaml-tag", "yaml-include", "yaml-js-include" ], "devDependencies": { "@types/jest": "^29.0.0", "@types/js-yaml": "^4.0.5", "@types/node": "^18.7.15", "@typescript-eslint/eslint-plugin": "^5.36.2", "@typescript-eslint/parser": "^5.36.2", "eslint": "^8.23.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^27.0.1", "jest": "^29.0.2", "ts-jest": "^28.0.8", "tslib": "^2.4.0", "typedoc": "^0.23.14", "typedoc-plugin-markdown": "^3.13.6", "typescript": "^4.8.2", "prettier": "^2.7.1" }, "dependencies": { "js-yaml": "^4.1.0", "lodash.merge": "^4.6.2" }, "scripts": { "build": "tsc", "lint": "eslint . --ext .ts --ext .mts", "test": "jest --coverage", "test:watch": "jest --watch", "prettier": "prettier --config .prettierrc --write .", "docs": "typedoc" } }