forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "pipeline-graph-view-plugin",
"version": "1.0.0",
"description": "Pipeline Graph visualization for Jenkins pipelines",
"private": true,
"scripts": {
"mvnbuild": "npm run build",
"mvntest": "npm run test",
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "echo \"Error: TODO add tests\" && exit 0"
},
"repository": {
"type": "git",
"url": "[email protected]:cliffmeyers/pipeline-graph-view-plugin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cliffmeyers/pipeline-graph-view-plugin/issues"
},
"homepage": "https://github.com/cliffmeyers/pipeline-graph-view-plugin/#readme",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/node": "10.17.35",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"css-loader": "^3.5.3",
"sass": "1.26.11",
"sass-loader": "10.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}