-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 963 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 963 Bytes
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
{
"name": "github-copilot-for-azure",
"version": "1.0.0",
"private": true,
"description": "GitHub Copilot plugin for Azure",
"scripts": {
"tokens": "cd scripts && npm run tokens --",
"verify-local": "cd scripts && npm run verify-local",
"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": "^25.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1"
}
}