forked from aws/aws-toolkit-azure-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.66 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "aws-vsts-tools",
"version": "1.14.0",
"description": "AWS Tools for Azure DevOps",
"private": true,
"main": "build/tasks",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run generateCode && npm run compileTypescript",
"generateCode": "ts-node ./build-scripts/generateRunners.ts",
"compileTypescript": "tsc -p ./",
"test": "jest",
"clean": "ts-node ./build-scripts/clean.ts",
"lint": "eslint -c .eslintrc.js --ext .ts .",
"lintFix": "eslint -c .eslintrc.js --fix --ext .ts .",
"generateResources": "ts-node ./build-scripts/generateResources.ts",
"copyResources": "ts-node ./build-scripts/copyResources.ts",
"package": "ts-node ./build-scripts/packageExtension.ts",
"fullBuild": "npm run build && npm run lint && npm run copyResources && npm run generateResources && npm run test && npm run package",
"newChange": "ts-node ./build-scripts/newChange.ts",
"createRelease": "ts-node ./build-scripts/createRelease.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-toolkit-azure-devops"
},
"keywords": [
"aws",
"s3",
"cloudformation",
"cli",
"lambda",
"codedeploy",
"ec2"
],
"author": "amazon web services llc",
"license": "apache",
"bugs": "https://github.com/aws/aws-toolkit-azure-devops/issues",
"homepage": "https://github.com/aws/aws-toolkit-azure-devops",
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/base-64": "^0.1.3",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^3.12.1",
"@types/json-query": "^2.2.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^10.17.28",
"@types/q": "^1.5.4",
"@types/readline-sync": "^1.4.3",
"@types/semver": "^7.3.4",
"@types/tmp": "^0.2.0",
"@types/uuid": "^3.4.5",
"@types/validator": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"esbuild": "^0.14.26",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-no-null": "^1.0.2",
"fs-extra": "^8.0.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"json-query": "^2.2.2",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"readline-sync": "^1.4.10",
"axios": "^1.6.8",
"tfx-cli": "^0.11.0",
"tmp": "^0.2.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.4.2",
"ts-node": "^8.4.1",
"typescript": "^4.2.2",
"uuid": "^3.3.3",
"validator": "^13.7.0"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^4.17.0",
"adm-zip": "^0.5.3",
"aws-sdk": "^2.979.0",
"azure-pipelines-task-lib": "^2.12.2",
"base-64": "^0.1.0",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.13.1",
"mime-types": "^2.1.30",
"semver": "^7.3.4"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!src/tasks/**/*.runner.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^lib/(.*)$": "<rootDir>/src/lib/$1",
"^aws-sdk/(.*)$": "<rootDir>/node_modules/aws-sdk/$1",
"^tasks/(.*)$": "<rootDir>/src/tasks/$1"
},
"transform": {
"\\.ts$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"testCommon.ts"
],
"testRegex": "/tests/.*\\.ts$",
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": ".test-reports",
"outputName": "testReport.xml"
}
]
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "none",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"husky": {
"hooks": {
"pre-commit": "(git secrets --register-aws || (echo 'Please install git-secrets https://github.com/awslabs/git-secrets to check for accidentally commited secrets!' && exit 1)) && git secrets --pre_commit_hook -- \"$@\" && pretty-quick --staged"
}
}
}