-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.61 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
{
"name": "ado-pipeline-vscode",
"displayName": "Azure DevOps Pipeline",
"description": "AzDo Pipeline",
"icon": "ado-pipeline-vscode.png",
"publisher": "carth",
"version": "0.0.1",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/c4rth/ado-pipeline-vscode"
},
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Azure",
"Visualization"
],
"keywords": [
"preview",
"visualizer",
"azure devops",
"pipeline"
],
"activationEvents": [
"onCommand:ado-pipeline-vscode.viewPipeline"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ado-pipeline-vscode.viewPipeline",
"title": "AzDo Pipeline Viewer"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceExtname == .yml",
"command": "ado-pipeline-vscode.viewPipeline",
"group": "AzDoExtension"
}
]
}
},
"scripts": {
"build": "npm run clean && npm run compile && webpack --mode production && npm pack",
"vscode:prepublish": "npm-run-all vscepack:*",
"compile": "tsc -p .",
"vscepack:extension": "tsc -p ./",
"vscepack:view": "webpack --mode production --devtool hidden-source-map",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -watch -p ./",
"watch:view": "webpack --watch",
"lint": "eslint src app --ext ts,tsx",
"tests": "mocha --require ts-node/register --timeout 10000 ./tests/*.test.ts",
"test_old": "npm run compile && node ./out/test/runTest.js",
"testYaml_old": "npm run compile:extension && node ./tests/testYaml.js"
},
"devDependencies": {
"@types/get-value": "^3.0.2",
"@types/glob": "^7.1.4",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vscode/test-web": "^0.0.24",
"azure-pipelines-language-server": "^0.6.7",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"mocha-junit-reporter": "^2.0.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@fluentui/react": "^8.63.0",
"@fluentui/react-hooks": "^8.5.3",
"ajv": "^8.11.0",
"js-yaml": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}