forked from aws/aws-toolkit-azure-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.12 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
{
"name": "aws-vsts-tools",
"version": "1.8.0",
"description": "AWS Tools for Azure DevOps",
"private": true,
"main": "_build/tasks",
"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": "tslint --project .",
"generateResources": "node ./build-scripts/generateResources.js",
"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-vsts-tools"
},
"keywords": [
"aws",
"s3",
"cloudformation",
"cli",
"lambda",
"codedeploy",
"ec2"
],
"author": "amazon web services llc",
"license": "apache",
"bugs": "https://github.com/aws/aws-vsts-tools/issues",
"homepage": "https://github.com/aws/aws-vsts-tools",
"devDependencies": {
"@types/archiver": "^3.0.0",
"@types/base-64": "^0.1.3",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^26.0.7",
"@types/js-yaml": "^3.12.1",
"@types/node": "^10.17.28",
"@types/q": "^1.5.2",
"@types/readline-sync": "^1.4.3",
"@types/shelljs": "^0.8.6",
"@types/tmp": "^0.2.0",
"@types/uuid": "^3.4.5",
"archiver": "^3.1.1",
"fs-extra": "^8.0.0",
"husky": "^4.2.3",
"jest": "^26.1.0",
"jest-junit": "^11.1.0",
"json-query": "^2.2.2",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"readline-sync": "^1.4.10",
"sync-request": "^6.1.0",
"terser-webpack-plugin": "^2.3.5",
"tfx-cli": "^0.8.3",
"tmp": "^0.2.1",
"ts-jest": "^26.1.4",
"ts-loader": "^6.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^3.8.2",
"uuid": "^3.3.3",
"validator": "^11.1.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"aws-sdk": "^2.530.0",
"azure-pipelines-task-lib": "2.8.0",
"base-64": "^0.1.0",
"https-proxy-agent": "^2.2.4",
"js-yaml": "^3.13.1",
"q": "^1.5.1",
"shelljs": "^0.8.3"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"Tasks/**",
"!Tasks/**/*.runner.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^sdkutils/(.*)": "<rootDir>/Tasks/Common/sdkutils/$1.ts",
"^Common/(.*)": "<rootDir>/Tasks/Common/$1.ts",
"^aws-sdk/(.*)": "<rootDir>/node_modules/aws-sdk/$1.js"
},
"transform": {
"\\.ts$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"testCommon.ts"
],
"testRegex": "/tests/.*\\.ts$",
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": ".test-reports",
"outputName": "testReport"
}
]
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "none",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}