-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 932 Bytes
/
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
{
"name": "lighthouse-vsts",
"scripts": {
"postinstall": "cd task && npm install",
"build": "tsc -p task && tsc -p web",
"test": "npm run build && mocha task/tests/**/*.spec.js",
"updateversion": "node update-version.js",
"package": "npm run build && rimraf *.vsix && tfx extension create --output-path .output/",
"publish:dev": "tfx extension publish --publisher gsoft-dev",
"publish:prod": "tfx extension publish --publisher gsoft"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"vss-web-extension-sdk": "5.141.0"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "20.17.10",
"husky": "9.1.7",
"minimist": "1.2.8",
"mocha": "10.8.2",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"rimraf": "3.0.2",
"tfx-cli": "0.17.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}