This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.32 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
{
"name": "@marklogic-community/grove-vue-core-components",
"version": "0.2.4",
"description": "Grove Vue UI core components",
"main": "dist/grove-vue-core-components.umd.js",
"module": "dist/grove-vue-core-components.esm.js",
"unpkg": "dist/grove-vue-core-components.min.js",
"browser": {
"./sfc": "src/components/searchquerybuilder/SearchQueryBuilder.vue"
},
"scripts": {
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"test": "npm run test:unit",
"test:unit": "vue-cli-service test:unit",
"build": "npm run build:umd && npm run build:es && npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/grove-vue-core-components.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/grove-vue-core-components.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/grove-vue-core-components.min.js"
},
"repository": {
"type": "git",
"url": "[email protected]:marklogic-community/grove-vue-core-components.git"
},
"keywords": [
"MarkLogic",
"Grove",
"vue",
"visualization",
"UI"
],
"author": "Geert Josten",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marklogic-community/grove-vue-core-components/issues"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@vue/cli-plugin-eslint": "^4.2.2",
"@vue/cli-plugin-pwa": "^4.2.2",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-jest": "^25.1.0",
"babel-preset-env": "^1.7.0",
"canvas": "^2.6.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"jest-environment-jsdom-thirteen": "^1.0.0",
"jsdom": "^13.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.6",
"vue-multiselect": "^2.1.6",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue-multiselect": "^2.1.6"
},
"dependencies": {
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"vue": "^2.6.11"
}
}