UNPKG

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