This repository was archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 KB
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
{
"name": "@marklogic-community/grove-vue-visjs-graph",
"version": "0.1.1",
"description": "Vue component to visualize RDF relationships and Timelines using Vis.js",
"main": "dist/grove-vue-visjs-graph.umd.js",
"module": "dist/grove-vue-visjs-graph.esm.js",
"unpkg": "dist/grove-vue-visjs-graph.min.js",
"browser": {
"./sfc": "src/grove-vue-visjs-graph.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-visjs-graph.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/grove-vue-visjs-graph.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/grove-vue-visjs-graph.min.js"
},
"repository": {
"type": "git",
"url": "git@github.com:marklogic-community/grove-vue-visjs-graph.git"
},
"keywords": [
"MarkLogic",
"Grove",
"vue",
"vis",
"graph",
"RDF",
"SPARQL",
"visualization",
"UI"
],
"author": "Geert Josten",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marklogic-community/grove-vue-visjs-graph/issues"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-plugin-pwa": "^3.4.1",
"@vue/cli-plugin-unit-jest": "^3.5.3",
"@vue/cli-service": "^3.5.3",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^24.1.0",
"babel-preset-env": "^1.7.0",
"canvas": "^2.3.1",
"jest-environment-jsdom-thirteen": "^1.0.0",
"jsdom": "^13.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"rollup": "^1.4.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-vue": "^4.7.2",
"vue-template-compiler": "^2.6.7"
},
"peerDependencies": {},
"dependencies": {
"es6-promise": "^4.2.6",
"isomorphic-fetch": "^2.2.1",
"ml-visjs-graph": "^0.6.2",
"vue": "^2.6.7"
}
}