2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
Files
bbob/packages/bbob-react/package.json
T
Nikolay Kostyurin c4a88e5036 chore: v2.5.1 (#21)
* fix(parser): fix issue with escaping backslashes when enableEscapeTags is set (#20)

there is a bug in the lexer where when enableEscapeTags is set, backslashes
are not always escaped (ie. \\[b] is treated as an escaped tag, rather than a
literal backslash, and then a tag).

* chore: v2.5.1
2019-06-18 09:56:21 +02:00

75 lines
2.0 KiB
JSON

{
"name": "@bbob/react",
"version": "2.5.1",
"description": "Render BBCode to React using @bbob/parser",
"keywords": [
"react",
"bbcode",
"parser",
"bbob"
],
"dependencies": {
"@bbob/core": "^2.5.1",
"@bbob/html": "^2.5.1",
"@bbob/plugin-helper": "^2.4.0"
},
"peerDependencies": {
"prop-types": "15.x",
"react": "15.x"
},
"devDependencies": {
"@bbob/preset-react": "^2.5.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": "../../node_modules/.bin/cross-env BABEL_ENV=commonjs ../../node_modules/.bin/babel src --out-dir lib",
"build:es": "../../node_modules/.bin/cross-env BABEL_ENV=es ../../node_modules/.bin/babel src --out-dir es",
"build:umd": "../../node_modules/.bin/cross-env BABEL_ENV=rollup NODE_ENV=development ../../node_modules/.bin/rollup --config ../../rollup.config.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd",
"test": "../../node_modules/.bin/jest --",
"cover": "../../node_modules/.bin/jest --coverage",
"lint": "../../node_modules/.bin/eslint .",
"size": "../../node_modules/.bin/size-limit",
"bundlesize": "../../node_modules/.bin/bundlesize"
},
"size-limit": [
{
"path": "lib/index.js"
}
],
"bundlesize": [
{
"path": "./dist/index.min.js",
"maxSize": "6.6 KB"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"lib",
"src",
"es"
]
}