@itentialopensource/binding-schema
Version:
A schema extension for JSON schema that builds upon hyper schema to dynamically bind data into a JSON schema document.
94 lines (93 loc) • 2.53 kB
JSON
{
"name": "@itentialopensource/binding-schema",
"version": "1.1.7",
"description": "A schema extension for JSON schema that builds upon hyper schema to dynamically bind data into a JSON schema document.",
"main": "lib/binding-schema.js",
"module": "es/binding-schema.js",
"sideEffects": false,
"files": [
"es",
"lib",
"umd"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "npm run build",
"start": "rollup -c --watch",
"build": "rollup -c",
"build:clean": "rm -rf es lib umd",
"lint": "eslint --ext .js,.cjs,.mjs,.jsx,.json --ignore-path .gitignore .",
"lint:errors": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"fix": "npm run lint:fix && npm run format",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docz:dev": "docz dev",
"docz:build": "docz build",
"deploy": "npm publish --registry=https://registry.npmjs.org --access=public"
},
"peerDependencies": {
"axios": "^1.7.4"
},
"dependencies": {
"immutability-helper": "^3.0.0",
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@types/jest": "^24.0.13",
"axios": "^1.7.7",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"rollup": "^1.12.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/itentialopensource/binding-schema.git"
},
"license": "Apache-2.0",
"homepage": "https://gitlab.com/itentialopensource/binding-schema#readme",
"bugs": {
"url": "https://gitlab.com/itentialopensource/binding-schema/issues"
},
"author": "Itential, LLC",
"contributors": [
{
"name": "Sven Cowart",
"email": "sven.cowart@itential.com"
},
{
"name": "Chase Whitfield",
"email": "chase.whitfield@itential.com"
}
],
"keywords": [
"json-schema",
"hyper-schema",
"binding-schema",
"json",
"schema",
"hyper",
"binding"
],
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!axios)"
]
}
}