This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.32 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@ts-graphviz/parser",
"version": "0.6.1",
"description": "Graphviz dot language parser for ts-graphviz.",
"main": "lib/index.js",
"exports": {
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"types": "lib/index.d.ts",
"author": "kamiazya <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ts-graphviz/parser.git"
},
"bugs": {
"url": "https://github.com/ts-graphviz/parser/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kamiazya"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"graphviz",
"dot",
"parser"
],
"scripts": {
"build:peggy": "peggy --plugin ts-pegjs --allowed-start-rules dot,graph,subgraph,node,edge,attributes,attribute,cluster_statements -o src/dot.peggy.ts grammar/dot.peggy && prettier --write './src/dot.peggy.ts'",
"prebuild": "yarn build:peggy",
"build": "rollup -c && prettier --write './lib/index.d.ts'",
"pretest": "yarn build:peggy",
"test": "jest",
"format": "eslint -c .eslintrc.json --ext ts src --fix && prettier --plugin=./prettier-plugin-peggy --write .",
"lint": "eslint -c .eslintrc.json --ext ts src",
"create-state-machine-diagram": "ts-node scripts/create-state-machine-diagram"
},
"dependencies": {
"ts-graphviz": "^0.16.0"
},
"devDependencies": {
"@ts-graphviz/node": "^0.4.0",
"@types/jest": "^26.0.23",
"@types/jest-specific-snapshot": "^0.5.5",
"@types/svgo": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-snapshot-serializer-raw": "^1.2.0",
"jest-specific-snapshot": "^5.0.0",
"peggy": "^1.2.0",
"prettier": "^2.2.1",
"prettier-plugin-pegjs": "^0.4.0",
"rollup": "^2.47.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"svgo": "^2.3.1",
"ts-dedent": "^2.1.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-pegjs": "^1.1.1",
"typescript": "^4.2.4"
}
}