-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 KB
/
package.json
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
{
"name": "prettier-plugin-dot",
"version": "0.4.1",
"description": "A prettier plugin for Graphviz Dot.",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"default": "./lib/index.cjs"
},
"types": "./types.d.ts",
"keywords": [
"prettier",
"prettier-plugin",
"graphviz",
"graphviz-dot"
],
"license": "MIT",
"author": "kamiazya <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ts-graphviz/prettier-plugin-dot.git"
},
"homepage": "https://github.com/ts-graphviz/prettier-plugin-dot",
"bugs": {
"url": "https://github.com/ts-graphviz/prettier-plugin-dot/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kamiazya"
},
"scripts": {
"test": "jest",
"build": "rollup -c && prettier --write './lib/*'",
"format": "eslint -c .eslintrc.json --ext ts src --fix && prettier --write .",
"lint": "eslint -c .eslintrc.json --ext ts src"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"dependencies": {
"ts-graphviz": "^1.3.2"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-snapshot-serializer-raw": "^1.2.0",
"prettier": "^2.8.1",
"rollup": "^3.7.3",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}