UNPKG

@ghii/yaml-loader

Version:

A Funny yaml loader for ghii configuration manager

94 lines (93 loc) 2.21 kB
{ "name": "@ghii/yaml-loader", "version": "0.0.7", "description": "A Funny yaml loader for ghii configuration manager ", "maintainers": [ { "name": "Daniele Fiungo", "email": "daniele.fiungo@iad2.it" } ], "author": "Daniele Fiungo <daniele.fiungo@iad2.it>", "keywords": [ "node", "config" ], "main": "dist/lib/yaml-loader.js", "types": "dist/types/yaml-loader.d.ts", "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/iad-os/ghii-yaml-loader.git" }, "private": false, "publishConfig": { "access": "public" }, "license": "MIT", "engines": { "node": ">=10.0.0" }, "scripts": { "lint": "eslint . --ext .ts,.tsx", "prebuild": "rimraf dist", "build": "tsc", "start": "rollup -c rollup.config.ts -w", "test": "jest --coverage", "test:watch": "jest --coverage --watch", "test:prod": "npm run lint && npm run test -- --no-cache", "deploy-docs": "ts-node tools/gh-pages-publish" }, "jest": { "transform": { ".(ts|tsx)": "ts-jest" }, "testEnvironment": "node", "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$", "moduleFileExtensions": [ "ts", "js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "src/__test__/" ], "coverageThreshold": { "global": { "branches": 90, "functions": 95, "lines": 95, "statements": 95 } }, "collectCoverageFrom": [ "src/*.{js,ts}" ] }, "devDependencies": { "@ghii/ghii": "1.0.0", "@types/jest": "^29.2.3", "@types/js-yaml": "^4.0.5", "@types/node": "^18.11.9", "@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/parser": "^5.45.0", "coveralls": "^3.1.1", "cross-env": "^7.0.3", "eslint": "^8.28.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.3.1", "jest-config": "^29.3.1", "prettier": "^2.8.0", "rimraf": "^3.0.2", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typedoc": "^0.23.21", "typescript": "^4.9.3" }, "dependencies": { "js-yaml": "^4.1.0" } }