This repository was archived by the owner on Dec 12, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "@ts-graphviz/node",
"version": "0.4.2",
"description": "Graphviz adapter for Node.js.",
"author": "kamiazya <yuki@kamiazya.tech>",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ts-graphviz/node.git"
},
"keywords": [
"graphviz",
"dot"
],
"bugs": {
"url": "https://github.com/ts-graphviz/node/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kamiazya"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"build": "rollup -c",
"lint": "eslint -c .eslintrc.json --ext ts,tsx src"
},
"peerDependencies": {
"ts-graphviz": "^0.13.1"
},
"dependencies": {
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.0.9",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.5.2",
"prettier": "^2.0.5",
"rollup": "^2.12.1",
"rollup-plugin-typescript2": "^0.27.1",
"ts-graphviz": "^0.13.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.0"
}
}