mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
da6709d437
* feat: use swc.rs instead of babel * BREAKING CHANGE: now we use swc.rs as main bundler and transpiler instead of babel - jest now uses swc - rollup now uses swc * feat: benchmark now separate package with `npm start` and colored output - benchmark as separate package with error throw if package drops performance * feat: all lerna packages now using scripts/pkg-task * feat(github): publish to npm and github registry - when release was created this action automaticly publish packages to npm and github * feat(github): move all from Travis CI to Github Actions - code analysis and tests now using github actions * test: increase tests coverage - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@bbob/react",
|
|
"version": "2.7.1",
|
|
"description": "A BBCode to React Renderer part of @bbob",
|
|
"keywords": [
|
|
"react",
|
|
"bbcode",
|
|
"parser",
|
|
"bbob"
|
|
],
|
|
"dependencies": {
|
|
"@bbob/core": "^2.7.1",
|
|
"@bbob/html": "^2.7.1",
|
|
"@bbob/plugin-helper": "^2.7.1"
|
|
},
|
|
"peerDependencies": {
|
|
"prop-types": "15.x",
|
|
"react": "15.x"
|
|
},
|
|
"devDependencies": {
|
|
"@bbob/preset-react": "^2.7.1",
|
|
"enzyme": "^3.9.0",
|
|
"enzyme-adapter-react-15": "^1.0.6",
|
|
"react": "15.x",
|
|
"react-dom": "^15.6.2",
|
|
"react-test-renderer": "^15.6.2"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"jsnext:main": "es/index.js",
|
|
"browser": "dist/index.js",
|
|
"browserName": "BbobReact",
|
|
"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"
|
|
},
|
|
"size-limit": [
|
|
{
|
|
"path": "lib/index.js"
|
|
}
|
|
],
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/index.min.js",
|
|
"maxSize": "8 KB"
|
|
}
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src",
|
|
"es"
|
|
],
|
|
"gitHead": "01b0916b4a92c14e205397bebd58cf9c691cd540"
|
|
}
|