forked from jenkinsci/workflow-cps-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "workflow-ui",
"version": "1.0.0",
"description": "Jenkins Pipeline UI",
"author": "Tom Fennelly <tom.fennelly@gmail.com> (https://github.com/tfennelly)",
"license": "MIT",
"scripts": {
"dev": "webpack --config webpack.config.js",
"prod": "webpack --config webpack.config.js --mode=production",
"start": "yarn dev -- --watch",
"lint:js": "eslint src/main/js --ext js",
"mvnbuild": "yarn prod",
"mvntest": "yarn lint:js"
},
"repository": {
"type": "git",
"url": "https://github.com/jenkinsci/workflow-plugin/tree/master/cps"
},
"readme": "../README.md",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"eslint-plugin-only-warn": "^1.0.2",
"gulp": "^3.9.0",
"less": "^3.12.2",
"less-loader": "^7.0.2",
"mini-css-extract-plugin": "^1.2.1",
"postcss": "^8.2.13",
"postcss-less": "^4.0.0",
"postcss-loader": "^4.0.4",
"style-loader": "^2.0.0",
"webpack": "4",
"webpack-cli": "^4.1.0",
"webpack-fix-style-only-entries": "^0.6.0"
},
"dependencies": {
"jenkins-js-modules": "1.3.0",
"jquery": "^3.5.1",
"jquery-ui": "^1.13.0",
"raf": "^3.4.1"
},
"browserslist": [
"defaults",
"IE 11"
]
}