@nteract/commutable
Version:
library for immutable notebook operations
105 lines (104 loc) • 2.4 kB
JSON
{
"name": "@nteract/commutable",
"version": "7.5.1",
"description": "library for immutable notebook operations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.ts",
"scripts": {
"release": "semantic-release -e semantic-release-monorepo --tag-format='@nteract/commutable@${version}'"
},
"keywords": [
"commutable",
"nteract",
"notebooks"
],
"publishConfig": {
"access": "public"
},
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"license": "BSD-3-Clause",
"dependencies": {
"immutable": "^4.0.0-rc.12",
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/uuid": "^8.0.0"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"header": "Release Notes",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
}