mirror of
https://github.com/Didericis/bare-bundle-transform-plugin-babel.git
synced 2026-06-26 01:55:17 -04:00
e1b3218ac2
## [1.0.2](https://github.com/Didericis/bare-bundle-transform-plugin-babel/compare/v1.0.1...v1.0.2) (2025-09-30)
96 lines
2.7 KiB
JSON
96 lines
2.7 KiB
JSON
{
|
|
"name": "bare-bundle-transform-plugin-babel",
|
|
"version": "1.0.2",
|
|
"description": "bare-bundle-transform plugin for applying babel transforms",
|
|
"main": "index.js",
|
|
"keywords": [
|
|
"babel",
|
|
"bare",
|
|
"bare-bundle",
|
|
"plugin"
|
|
],
|
|
"author": "Didericis",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"test": "npm run prettier:lint && npm run test:build-project && npm run test:build-bundles && bare test/bare.js",
|
|
"test:build-project": "cd test/project && npm install",
|
|
"test:build-bundles": "mkdir -p test/bundles && npm run test:build-default-bundle && npm run test:build-plugin-bundle",
|
|
"test:build-default-bundle": "cd test/project && bare-pack app.js -o ../bundles/default.bundle",
|
|
"test:build-plugin-bundle": "cd test/project && bare-pack app.js | bare-bundle-transform --plugin ../../index.js -o ../bundles/plugin.bundle",
|
|
"prettier:lint": "prettier . --check",
|
|
"prettier:fix": "prettier . --write"
|
|
},
|
|
"prettier": "prettier-config-standard",
|
|
"imports": {
|
|
"child_process": {
|
|
"bare": "bare-subprocess",
|
|
"default": "node:child_process"
|
|
},
|
|
"path": {
|
|
"bare": "bare-path",
|
|
"default": "node:path"
|
|
}
|
|
},
|
|
"release": {
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "angular",
|
|
"releaseRules": [
|
|
{
|
|
"type": "docs",
|
|
"scope": "README",
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"type": "refactor",
|
|
"release": "patch"
|
|
}
|
|
],
|
|
"parserOpts": {
|
|
"noteKeywords": [
|
|
"BREAKING CHANGE",
|
|
"BREAKING CHANGES",
|
|
"MANUAL BUMP"
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"package.json",
|
|
"package-lock.json",
|
|
"CHANGELOG.md"
|
|
],
|
|
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/npm": "^12.0.2",
|
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
"bare-bundle-transform": "^0.2.2",
|
|
"bare-pack": "^1.4.6",
|
|
"brittle": "^3.19.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-config-standard": "^7.0.0",
|
|
"semantic-release": "^24.2.9"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.28.4"
|
|
}
|
|
}
|