forked from dagrejs/dagre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "@dagrejs/dagre",
"version": "2.0.4-pre",
"description": "Graph layout for JavaScript",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"contributors": [
"David Newell",
"Matthew Dahl (https://github.com/sandersky)"
],
"license": "MIT",
"main": "dist/dagre.cjs.js",
"module": "dist/dagre.esm.js",
"scripts": {
"build": "node build.js",
"lint": "eslint . --ext .js,.ts",
"test": "jest"
},
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/dagre.d.ts",
"import": "./dist/dagre.esm.js",
"require": "./dist/dagre.cjs.js"
},
"./package.json": "./package.json"
},
"types": "./dist/dagre.d.ts",
"keywords": [
"graph",
"layout"
],
"dependencies": {
"@dagrejs/graphlib": "2.2.4"
},
"devDependencies": {
"benchmark": "2.1.4",
"esbuild": "^0.27.0",
"eslint": "8.35.0",
"jest": "^30.2.0",
"semver": "7.3.7"
},
"repository": {
"type": "git",
"url": "https://github.com/dagrejs/dagre.git"
}
}