-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"name": "plumbr",
"version": "0.1.0",
"description": "Azure DevOps Extension that should show Pipeline Status and allow for Stage Approvals and Promotions",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"compile": "npm run clean && webpack --mode production",
"compile:dev": "npm run clean && webpack --mode development",
"build": "npm run compile",
"build:dev": "npm run compile:dev && npm run postbuild",
"postbuild": "npm run package-extension -- --rev-version",
"package-extension": "tfx extension create --manifest-globs azure-devops-extension.json src/**/*.json",
"publish-extension": "tfx extension publish --manifest-globs azure-devops-extension.json src/**/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huserben/plumbr.git"
},
"author": "huserben",
"license": "MIT",
"bugs": {
"url": "https://github.com/huserben/plumbr/issues"
},
"homepage": "https://github.com/huserben/plumbr#readme",
"dependencies": {
"azure-devops-extension-api": "^1.158.0",
"azure-devops-extension-sdk": "^2.0.11",
"azure-devops-ui": "^2.167.1",
"file-loader": "^6.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"base64-inline-loader": "^1.1.1",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"node-sass": "^5.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"tfx-cli": "^0.8.3",
"ts-loader": "^8.0.18",
"tsc": "^1.20150623.0",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
}
}