forked from science-periodicals/jsonld-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "jsonld-vis",
"version": "3.0.0",
"description": "Turns JSON-LD into pretty graphs using d3.js",
"type": "module",
"browser": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"format": "prettier --single-quote --write \"{src,test}/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.js src/index.css --bundle --format=esm --outdir=dist",
"build:example": "esbuild example/index.js example/index.css --bundle --format=esm --outdir=example/dist",
"watch": "esbuild example/index.js example/index.css --bundle --format=esm--outdir=example/dist --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/science-periodicals/jsonld-vis.git"
},
"keywords": [
"JSONLD",
"JSON-LD",
"d3",
"visualization",
"graph",
"linked",
"data"
],
"authors": [
"Leon Chen",
"Robin Berjon",
"Sebastien Ballesteros",
{
"name": "Benjamin Young",
"email": "byoung@digitalbazaar.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/science-periodicals/jsonld-vis/issues"
},
"homepage": "https://github.com/science-periodicals/jsonld-vis#readme",
"devDependencies": {
"esbuild": "^0.27.3",
"prettier": "^3.8.1"
},
"dependencies": {
"d3": "^7.9.0",
"tippy.js": "^6.3.7"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "none"
}
}