-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1006 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
34
35
{
"name": "helmfile-installer-pipeline-task",
"scripts": {
"postinstall": "cd task && npm install && cd - && node scripts/post-install.js",
"package": "rimraf *.vsix task/dist && tsc -p task && tfx extension create --output-path PackageOutput",
"bump-version": "node version-bump.js",
"publish": "tfx extension publish --publisher gsoft",
"publish:dev": "tfx extension publish --publisher gsoft-dev",
"test": "mocha task/tests"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"semver": "^7.3.5",
"vss-web-extension-sdk": "^5.141.0"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"@types/node": "^10.17.14",
"fs-extra": "^10.0.0",
"husky": "^4.2.1",
"minimist": "^1.2.3",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.1",
"tfx-cli": "^0.10.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}