ipld-schema-validator
Version:
IPLD Schema Validator
147 lines (146 loc) • 3.63 kB
JSON
{
"name": "ipld-schema-validator",
"version": "1.0.2",
"description": "IPLD Schema Validator",
"main": "ipld-schema-validator.js",
"type": "module",
"types": "./types/ipld-schema-validator.d.ts",
"scripts": {
"build": "npm run build:types",
"build:types": "tsc --build",
"prepublishOnly": "npm run build",
"lint": "standard",
"test:node": "c8 --check-coverage --branches 100 --functions 100 --lines 100 mocha test/test-*.js",
"test:browser": "polendina --cleanup --webpack-config test/webpack.config.js test/test-*.js",
"test": "npm run lint && npm run build && npm run test:node && npm run test:browser",
"coverage": "c8 --reporter=html mocha test/test-*.js && npm_config_yes=true npx st -d coverage -p 8080"
},
"exports": {
".": {
"import": "./ipld-schema-validator.js"
}
},
"bin": {
"ipld-schema-validator": "bin/cli.mjs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rvagg/js-ipld-schema-validator.git"
},
"keywords": [
"IPLD",
"Schema"
],
"author": "Rod <rod@vagg.org> (http://r.va.gg/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rvagg/js-ipld-schema-validator/issues"
},
"homepage": "https://github.com/rvagg/js-ipld-schema-validator#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/yargs": "^17.0.11",
"c8": "^7.12.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"polendina": "^3.1.0",
"standard": "^17.0.0",
"typescript": "^4.7.4"
},
"typesVersions": {
"*": {
"*": [
"types/*"
],
"types/*": [
"types/*"
]
}
},
"dependencies": {
"ipld-schema": "^3.0.3",
"yargs": "^17.5.1"
},
"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"
]
}
}