This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
110 lines (110 loc) · 3.48 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
{
"name": "bedrock",
"version": "0.6.6",
"description": "The missing Bedrock CLI",
"author": "Bedrock Team (https://aka.ms/bedrock)",
"contributors": [],
"license": "MIT",
"scripts": {
"build": "shx rm -rf dist && webpack && pkg -t node12-linux-x64,node12-macos-x64,node12-win-x64 dist/bedrock.js && shx mv bedrock-{linux,macos,win.exe} dist",
"build-cmd-docs": "ts-node tools/generateDoc.ts",
"lint": "eslint 'src/**/*.ts{,x}'",
"lint-fix": "eslint --fix 'src/**/*.ts{,x}'",
"md-lint": "find guides -name \\*.md | xargs -n 1 markdown-link-check",
"format": "prettier --write 'src/**/*.ts{,x}'",
"test": "jest --rootDir src --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html",
"test-watch": "jest --rootDir src --watchAll",
"postinstall": "cd node_modules/azure-devops-node-api && git apply ../../patches/001-azure-devops-node.patch || true",
"test-coverage-html": "jest --coverage --coverageReporters=html"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/dotenv": "^6.1.1",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.18",
"@types/jest-when": "^2.7.0",
"@types/js-yaml": "^3.12.1",
"@types/mock-fs": "^4.10.0",
"@types/node": "^12.12.6",
"@types/node-emoji": "^1.8.1",
"@types/shelljs": "^0.8.5",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"clui": "^0.3.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": ">=1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jest-when": "^2.7.0",
"lint-staged": ">=10",
"markdown-link-check": "^3.8.0",
"mock-fs": "^4.10.2",
"nyc": "^14.1.1",
"pkg": "^4.4.0",
"prettier": "^2.0.1",
"shx": "^0.3.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"prettier": {
"proseWrap": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && ts-node tools/generateDoc.ts && git add docs/commands/data.json"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
},
"dependencies": {
"@azure/arm-containerregistry": "^7.0.0",
"@azure/arm-resources": "^2.1.0",
"@azure/arm-storage": "^10.1.0",
"@azure/arm-subscriptions": "^2.0.0",
"@azure/identity": "^1.0.0",
"@azure/keyvault-secrets": "^4.0.0",
"@azure/ms-rest-nodeauth": "^3.0.0",
"@types/clui": "^0.3.0",
"@types/fs-extra": "^8.0.0",
"@types/git-url-parse": "^9.0.0",
"@types/mkdirp": "^0.5.2",
"azure-devops-node-api": "9.0.1",
"azure-storage": "^2.10.3",
"cli-table": "^0.3.1",
"commander": "^3.0.1",
"dotenv": "^8.1.0",
"figlet": "^1.2.4",
"fs-extra": "^8.1.0",
"git-js": "^1.1.1",
"git-url-parse": "^11.1.2",
"inquirer": "^7.0.4",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.13.1",
"kleur": "^3.0.3",
"node-emoji": "^1.10.0",
"open": "^6.4.0",
"shelljs": "^0.8.3",
"simple-git": "^1.126.0",
"spektate": "^1.0.11",
"ssh-url": "^0.1.5",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"resolutions": {
"terser-webpack-plugin": "^1.4.2"
}
}