-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 3.55 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "digitalocean-tools-vsts",
"version": "3.0.0",
"description": "DigitalOcean task for the Azure DevOps system",
"author": "Marcelo Formentão <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/marceloavf/digitalocean-tools-vsts.git",
"type": "git"
},
"scripts": {
"lint": "eslint \"{Tasks,Tests,Common}/**/*.ts\" --fix",
"clean": "node crlf-to-lf.js && yarn run vsts-build-tools-clean && yarn run lerna:clean",
"build": "yarn run lint && yarn run webpack",
"package": "yarn run clean && yarn run bootstrap && yarn run build && yarn run vsts-build-tools-package",
"test": "yarn run lerna:clean && node --expose-gc ./node_modules/.bin/jest --logHeapUsage",
"test:watch": "yarn test --watchAll",
"bootstrap": "lerna bootstrap",
"lerna:clean": "lerna clean -y --loglevel=silent",
"prepare": "husky install",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"aws-sdk": "^2.1038.0",
"azure-pipelines-task-lib": "3.1.10",
"azure-pipelines-tool-lib": "0.13.3",
"lodash": "4.17.21",
"matcher": "3.0.0",
"node-fetch": "2.6.7",
"p-queue": "6.6.2",
"p-retry": "4.2.0",
"pretty-bytes": "5.6.0"
},
"devDependencies": {
"@mapbox/aws-sdk-jest": "^0.0.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.165",
"@types/node": "^16.11.10",
"@types/node-fetch": "2.5.12",
"@types/q": "^1.5.4",
"@types/semver": "^7.3.4",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.4.0",
"@typescript-eslint/parser": "^5.5.0",
"all-contributors-cli": "^6.20.0",
"clean-webpack-plugin": "^4.0.0",
"codecov": "^3.8.1",
"crlf": "^1.1.1",
"cross-env": "^7.0.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^6.0.0",
"gl-vsts-tasks-build-scripts": "0.7.0-alpha.7",
"husky": "^7.0.0",
"jest": "^27.4.0",
"lerna": "^4.0.0",
"mock-fs": "^5.0.0",
"prettier": "^2.5.0",
"semantic-release": "^19.0.3",
"tfx-cli": "^0.9.3",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"lint-staged": {
"{Tasks,Tests,Common}/**/*.ts": [
"yarn lint"
]
},
"engines": {
"node": "^16.0.0",
"yarn": ">=1.0.0"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
{
"path": "@semantic-release/npm",
"npmPublish": false
},
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/npm",
"npmPublish": false
},
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci] ***NO_CI***\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/github"
]
}
}