mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
d070a66db3
* chore(lerna): don't publish packages to npm by lerna * chore(lerna): add publish to npm command * fix(github): publish using lerna * chore(lerna): add publish minor * chore(release): publish v2.8.0
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@bbob/react",
|
|
"version": "2.8.0",
|
|
"description": "A BBCode to React Renderer part of @bbob",
|
|
"keywords": [
|
|
"react",
|
|
"bbcode",
|
|
"parser",
|
|
"bbob"
|
|
],
|
|
"dependencies": {
|
|
"@bbob/core": "^2.8.0",
|
|
"@bbob/html": "^2.8.0",
|
|
"@bbob/plugin-helper": "^2.8.0"
|
|
},
|
|
"peerDependencies": {
|
|
"prop-types": "15.x",
|
|
"react": "15.x"
|
|
},
|
|
"devDependencies": {
|
|
"@bbob/preset-react": "^2.8.0",
|
|
"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"
|
|
}
|