mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@bbob/plugin-helper",
|
|
"version": "2.8.3",
|
|
"description": "Set of utils to help write plugins for @bbob/core",
|
|
"keywords": [
|
|
"bbob",
|
|
"plugin",
|
|
"helper"
|
|
],
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"jsnext:main": "es/index.js",
|
|
"browser": "dist/index.js",
|
|
"browserName": "BbobPluginHelper",
|
|
"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": "1024 B"
|
|
}
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src",
|
|
"es"
|
|
]
|
|
}
|