-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.28 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
{
"name": "pipeline-graph-view-plugin",
"version": "1.0.0",
"description": "Pipeline Graph visualization for Jenkins pipelines",
"private": true,
"type": "module",
"scripts": {
"build": "vite build --mode production",
"build:dev": "vite build --mode production --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsc:check": "tsc",
"eslint": "eslint",
"eslint:fix": "eslint --fix",
"lint": "npm run tsc:check && npm run eslint",
"test": "vitest run",
"test:dev": "vitest watch",
"eslint:mvn": "eslint --format checkstyle --output-file target/eslint-warnings.xml || ([ -n \"$CI\" ] && [ -f target/eslint-warnings.xml ])",
"vitest:mvn": "vitest run --reporter default --reporter junit --outputFile \"$PWD/target/surefire-reports/vitest-junit.xml\" || ([ -n \"$CI\" ] && [ -f target/surefire-reports/vitest-junit.xml ])",
"mvnbuild": "npm run build",
"mvntest": "npm run format:check && npm run tsc:check && npm run eslint:mvn && npm run vitest:mvn"
},
"repository": {
"type": "git",
"url": "git@github.com:jenkinsci/pipeline-graph-view-plugin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jenkinsci/pipeline-graph-view-plugin/issues"
},
"homepage": "https://github.com/jenkinsci/pipeline-graph-view-plugin/#readme",
"dependencies": {
"@formatjs/intl-durationformat": "^0.10.0",
"@tippyjs/react": "^4.2.6",
"linkify-html": "^4.3.1",
"linkify-react": "^4.3.1",
"linkifyjs": "^4.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-zoom-pan-pinch": "3.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.25.1",
"eslint-formatter-checkstyle": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^28.0.0",
"neostandard": "^0.12.1",
"prettier": "^3.5.3",
"sass-embedded": "^1.87.0",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-plugin-css-injected-by-js": "^4.0.0",
"vitest": "^3.1.2"
},
"engines": {
"node": ">=23"
}
}