-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
70
71
{
"version": "0.0.0-semantically-released",
"name": "@opensemanticlab/interactive-semantic-graph",
"description": "interactive semantic graph tool based on vis.js",
"author": "Simon Stier, Alexander Triol, Matthias Popp",
"homepage": "https://github.com/OpenSemanticLab/interactive-semantic-graph",
"repository": {
"type": "git",
"url": "https://github.com/OpenSemanticLab/interactive-semantic-graph.git"
},
"bugs": {
"url": "https://github.com/OpenSemanticLab/interactive-semantic-graph/issues"
},
"license": "AGPLv3",
"keywords": [
"javascript",
"library",
"graph",
"semantic"
],
"engines": {
"node": ">=14"
},
"files": [
"src",
"dist"
],
"amdName": "isg",
"source": "src/index.js",
"main": "dist/index.cjs",
"unpkg": "./dist/isg.umd.js",
"exports": "./src/index.modern.mjs",
"scripts": {
"build": "npx webpack",
"build:test": "npm run build",
"pretest:ci": "npm run build:test",
"test": "tap test --no-coverage",
"test:browser": "tap test --no-coverage",
"test:watch": "tap test --watch",
"test:ci": "tap test --100",
"test:report": "opener coverage/lcov-report/index.html",
"eslint": "npx eslint ../interactive-semantic-graph/test --ext=mjs,js --fix && npx eslint ../interactive-semantic-graph/src --ext=mjs,js --fix"
},
"dependencies": {
"@json-editor/json-editor": "^2.10.1",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.10.5",
"chroma-js": "^2.4.2",
"jquery": "^3.7.0",
"jsoneditor": "^9.10.2",
"jsonpath": "^1.1.1",
"plotly.js-dist": "^2.24.3",
"vis-data": "^7.1.6",
"vis-network": "^9.1.6"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"microbundle": "^0.15.1",
"playwright": "^1.36.1",
"sinon": "^15.2.0",
"tabulator-tables": "^5.5.0",
"tap": "^16.3.7",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}