@ghii/yaml-loader
Version:
A Funny yaml loader for ghii configuration manager
60 lines (59 loc) • 1.22 kB
JSON
{
"name": "@ghii/yaml-loader",
"version": "1.1.0",
"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"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types/yaml-loader.d.ts",
"default": "./dist/lib/yaml-loader.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iad-os/ghii-yaml-loader.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.12",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@ghii/ghii-v2": "~0.0.5"
},
"dependencies": {
"js-yaml": "^4.1.1"
}
}