This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
122 lines (122 loc) · 3.93 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@zenuml/core",
"version": "2.0.0",
"private": false,
"repository": {
"url": "https://github.com/ZenUml/core.git"
},
"scripts": {
"dev": "vite dev --port 8080",
"build:site": "vite build",
"build": "vite build -c vite.config.lib.js",
"test": "vitest",
"cy": "cypress run",
"cy:open": "cypress open",
"cy:smoke": "cypress run --spec cypress/e2e/smoke.spec.js",
"antlr:setup": "python3 -m pip install antlr4-tools",
"antlr:generate": "pwd && cd ./src/g4-units/hello-world && antlr4 Hello.g4",
"antlr:javac": "pwd && cd ./src/g4-units/hello-world && CLASSPATH=\"../../../antlr/antlr-4.11.1-complete.jar:$CLASSPATH\" javac *.java",
"antlr:grun": "pwd && cd ./src/g4-units/hello-world && grun Hello r -tokens",
"antlr": "pnpm run antlr:lexer && pnpm run antlr:parser",
"antlr:clear": "rm -rf src/generated-parser/*",
"antlr:lexer": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceLexer.g4",
"antlr:parser": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceParser.g4",
"git:branch:clean:gone": "git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d",
"git:branch:clean:merged": "git branch --merged|egrep -v \"(\\*|master|main|dev|skip_branch_name)\" | xargs git branch -d",
"git:branch:safe-delete": "echo '> git log --graph --left-right --cherry --oneline another-branch...main'",
"git:forget": "git rm -r --cached . && git add . && git commit -m \"Forget all ignored files\"",
"test:specs": "echo \"Error: test:specs is not supported\""
},
"main": "./dist/zenuml.js",
"module": "./dist/zenuml.esm.mjs",
"types": "./types/index.d.ts",
"dependencies": {
"@types/assert": "^1.5.4",
"@types/ramda": "^0.28.0",
"@vue/compat": "^3.2.45",
"antlr4": "^4.11.0",
"color-string": "^1.5.5",
"dom-to-image-more": "^2.9.5",
"file-saver": "^2.0.5",
"highlight.js": "^10.1.1",
"html-to-image": "^1.9.0",
"lodash": "^4.17.20",
"marked": "^4.0.10",
"pino": "^8.7.0",
"postcss": "^8.4.19",
"ramda": "^0.28.0",
"tailwindcss": "^3.2.4",
"vue": "^3.2.45",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@types/antlr4": "^4.11.2",
"@types/color-string": "^1.5.2",
"@types/lodash": "^4.14.168",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.2.6",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"concurrently": "^7.5.0",
"cypress": "10",
"cypress-plugin-snapshots": "^1.4.4",
"eslint": "^8.30.0",
"eslint-plugin-vue": "^8.7.1",
"global-jsdom": "^8.6.0",
"jsdom": "^20.0.2",
"node-sass": "^6.0.0",
"regenerator-runtime": "^0.13.7",
"sass": "^1.26.5",
"svg-url-loader": "^6.0.0",
"terser-webpack-plugin": "^3.0.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vite": "^3.2.3",
"vite-plugin-css-injected-by-js": "^2.2.0",
"vitest": "^0.26.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/*.spec.{j,t}s?(x)"
]
}
]
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"browserslist": [
"last 2 years"
],
"packageManager": "pnpm@7.18.1",
"engines": {
"node": ">=12.0.0"
},
"volta": {
"node": "18.12.1"
}
}