-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "github-copilot-for-azure",
"version": "1.0.0",
"private": true,
"description": "GitHub Copilot plugin for Azure",
"scripts": {
"build": "gulp",
"tokens": "cd scripts && npm run tokens --",
"verify-local": "echo 'Removed: use npm run build + copilot --plugin-dir ./output instead' && exit 1",
"test": "cd scripts && npm test",
"test:skills": "cd tests && npm test --",
"test:skills:integration": "cd tests && npm run test:integration --",
"release": "semantic-release",
"postinstall": "cd scripts && npm install",
"dashboard:collect": "cd scripts && npm run dashboard:collect",
"dashboard": "cd scripts && npm run dashboard"
},
"engines": {
"node": ">=22.14.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/fancy-log": "^2.0.2",
"@types/gulp": "^4.0.18",
"@types/node": "^22.0.0",
"@types/vinyl": "^2.0.12",
"fancy-log": "^2.0.0",
"gulp": "^5.0.1",
"nerdbank-gitversioning": "^3.9.50",
"semantic-release": "^25.0.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}