UNPKG

1.49 kBJSONView Raw
1{
2 "name": "@bbob/html",
3 "version": "3.0.2",
4 "description": "A BBCode to HTML Renderer part of @bbob",
5 "keywords": [
6 "html",
7 "bbcode",
8 "parser",
9 "bbob"
10 ],
11 "dependencies": {
12 "@bbob/core": "^3.0.2",
13 "@bbob/plugin-helper": "^3.0.2"
14 },
15 "main": "lib/index.js",
16 "module": "es/index.js",
17 "jsnext:main": "es/index.js",
18 "browser": "dist/index.js",
19 "browserName": "BbobHtml",
20 "homepage": "https://github.com/JiLiZART/bbob",
21 "author": "Nikolay Kostyurin <jilizart@gmail.com>",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/JiLiZART/bbob/issues"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git://github.com/JiLiZART/bbob.git"
29 },
30 "scripts": {
31 "build:commonjs": "../../scripts/pkg-task build-commonjs",
32 "build:es": "../../scripts/pkg-task build-es",
33 "build:umd": "../../scripts/pkg-task build-umd",
34 "build": "npm run build:commonjs && npm run build:es && npm run build:umd",
35 "test": "../../scripts/pkg-task test",
36 "cover": "../../scripts/pkg-task cover",
37 "lint": "../../scripts/pkg-task lint",
38 "size": "../../scripts/pkg-task size",
39 "bundlesize": "../../scripts/pkg-task bundlesize"
40 },
41 "size-limit": [
42 {
43 "path": "lib/index.js"
44 }
45 ],
46 "bundlesize": [
47 {
48 "path": "./dist/index.min.js",
49 "maxSize": "4.6 KB"
50 }
51 ],
52 "publishConfig": {
53 "registry": "https://registry.npmjs.org/"
54 },
55 "files": [
56 "dist",
57 "lib",
58 "src",
59 "es"
60 ]
61}