This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "uibuilder-vuejs-component-extras",
"description": "A set of extra VueJS components designed to work with node-red-contrib-uibuilder though they should also work with other VueJS installations.",
"version": "0.0.4",
"main": "dist/uibuilder-vuejs-component-extras.ssr.js",
"browser": "dist/uibuilder-vuejs-component-extras.esm.js",
"module": "dist/uibuilder-vuejs-component-extras.esm.js",
"unpkg": "dist/uibuilder-vuejs-component-extras.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"parcel": "parcel ./src/lib-components/index.js",
"serve": "vue-cli-service serve dev/serve.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {
"vue-svg-gauge": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@tweenjs/tween.js": "^18.6.0",
"@types/node": "^14.11.1",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-plugin-vue": "^6.2.2",
"minimist": "^1.2.5",
"parcel": "^1.12.4",
"rollup": "^2.7.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"oldmain": "index.js",
"engines": {
"node": ">=10"
},
"keywords": [
"uibuilder",
"vuejs",
"vue",
"components",
"front-end"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TotallyInformation/uibuilder-vuejs-component-extras.git"
},
"author": "Julian Knight (https://it.knightnet.org.uk)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TotallyInformation/uibuilder-vuejs-component-extras/issues"
},
"homepage": "https://github.com/TotallyInformation/uibuilder-vuejs-component-extras#readme"
}