sssom-js
Version:
Simple Standard for Sharing Ontology Mappings (SSOM) JavaScript library
62 lines (61 loc) • 1.67 kB
JSON
{
"name": "sssom-js",
"version": "0.4.4",
"description": "Simple Standard for Sharing Ontology Mappings (SSOM) JavaScript library",
"keywords": [
"crosswalk",
"concordance",
"alignment",
"jskos"
],
"author": "Jakob Voß",
"license": "MIT",
"homepage": "https://github.com/gbv/sssom-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/gbv/sssom-js.git"
},
"type": "module",
"main": "index.js",
"files": [
"index.js",
"lib/",
"bin/"
],
"bin": {
"sssom": "./bin/sssom.js"
},
"scripts": {
"test": "mocha",
"lint": "eslint *.js lib/ test/ docs/app.js",
"fix": "eslint *.js lib/ test/ docs/app.js --fix",
"build": "webpack; cp context.json docs/",
"docs": "http-server --cors -c-1 docs/",
"release": "git checkout dev && git pull && npm test && npm version $SEMVER && git push && git checkout main && git merge dev && git push --follow-tags && git checkout dev",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"dependencies": {
"csv-parser": "^3.2.0",
"namespace-lookup": "^0.2.1",
"ncname": "^3.0.0",
"yaml": "^2.7.1"
},
"engines": {
"node": ">= 20.0.0"
},
"devDependencies": {
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eslint": "^9.23.0",
"eslint-config-gbv": "^2.6.0",
"http-server": "^14.1.1",
"jsonld2rdf": "^0.5.1",
"mocha": "^11.1.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"process": "^0.11.10",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1"
}
}