mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
2d1a08ba9a
* chore: fix swc + rollup transform * chore: fix pkg-task args parsing * chore: update lerna, rollup and swc to build proper es6 files * chore: fix swc build for es targets * ci: nodes matrix to newest versions * ci: rollup to mjs, swc to json * ci: add canary publish * ci: no git tag for canary * ci: no private publish for canary * ci: remove --canary from publish-canary * fix: remove gitHead from package.json * fix: tests setup * fix: bbob plugin helper imports * fix: plugin helper build priority and circular deps * fix: add nx for parallel build * fix: npm ci * fix: code ql * fix: remove exports directive * fix: rollup build * fix: vue2 test and minify * fix: bundle size limits * feat: bundlephobia pr review * feat: bundlephobia more popular action * feat: publish branch to npm * fix: secret NPM token * fix: bundlephobia version * fix: remove bundlephobia checker * fix: npm publish in PR * chore: release 2.8.3 * chore: fix test runs on CI, removed 14.x version * fix: sync package-lock * fix: remove lock files in sub packages * fix: bundlesize > bundlesize2 * fix: update lock files * fix: lock file in vue2-example
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@bbob/parser",
|
|
"version": "2.8.2",
|
|
"description": "A BBCode to AST Parser part of @bbob",
|
|
"keywords": [
|
|
"bbcode",
|
|
"parser",
|
|
"ast",
|
|
"bbcode parser",
|
|
"bbcodeparser",
|
|
"bbob",
|
|
"array",
|
|
"parse"
|
|
],
|
|
"dependencies": {
|
|
"@bbob/plugin-helper": "^2.8.2"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"jsnext:main": "es/index.js",
|
|
"browser": "dist/index.js",
|
|
"browserName": "BbobParser",
|
|
"homepage": "https://github.com/JiLiZART/bbob",
|
|
"author": "Nikolay Kostyurin <jilizart@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/JiLiZART/bbob/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/JiLiZART/bbob.git"
|
|
},
|
|
"scripts": {
|
|
"build:commonjs": "../../scripts/pkg-task build-commonjs",
|
|
"build:es": "../../scripts/pkg-task build-es",
|
|
"build:umd": "../../scripts/pkg-task build-umd",
|
|
"build": "npm run build:commonjs && npm run build:es && npm run build:umd",
|
|
"test": "../../scripts/pkg-task test",
|
|
"cover": "../../scripts/pkg-task cover",
|
|
"lint": "../../scripts/pkg-task lint",
|
|
"size": "../../scripts/pkg-task size",
|
|
"bundlesize": "../../scripts/pkg-task bundlesize",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"size-limit": [
|
|
{
|
|
"path": "lib/index.js"
|
|
}
|
|
],
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/index.min.js",
|
|
"maxSize": "3 KB"
|
|
}
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src",
|
|
"es"
|
|
]
|
|
}
|