@ipld/printify
Version:
Convert a decoded IPLD value to a colored printable string
119 lines (118 loc) • 2.77 kB
JSON
{
"name": "@ipld/printify",
"version": "0.1.24",
"description": "Convert a decoded IPLD value to a colored printable string",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run lint",
"lint": "standard",
"test": "npm run lint && mocha test/*.spec.js"
},
"keywords": [],
"author": "Mikeal Rogers <mikeal.rogers@gmail.com> (https://www.mikealrogers.com/)",
"license": "(Apache-2.0 AND MIT)",
"dependencies": {
"chalk": "^5.0.1",
"multiformats": "^13.0.0"
},
"devDependencies": {
"chai": "^5.0.0",
"mocha": "^11.0.1",
"standard": "^17.0.0"
},
"exports": {
".": {
"import": "./index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipld/js-printify.git"
},
"bugs": {
"url": "https://github.com/ipld/js-printify/issues"
},
"homepage": "https://github.com/ipld/js-printify#readme",
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}