forked from microsoft/accessibility-insights-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.44 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
{
"name": "accessibility-insights-action",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"description": "This project welcomes contributions and suggestions. Most contributions require you to agree to a\r Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\r the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.",
"scripts": {
"packages": "yarn workspaces foreach --exclude accessibility-insights-action --verbose",
"build": "yarn packages --topological-dev run build",
"cbuild": "yarn packages --topological-dev run cbuild",
"clean": "yarn packages run clean",
"format:check": "prettier --check \"**/*\"",
"format:fix": "prettier --write \"**/*\"",
"lint:check": "yarn packages run lint:check",
"lint:fix": "yarn packages run lint:fix",
"copyright:check": "license-check-and-add check -f ./license-check-and-add-config.json",
"copyright:fix": "license-check-and-add add -f ./license-check-and-add-config.json",
"test": "yarn packages run test",
"test:e2e": "yarn packages run test:e2e",
"docs": "yarn packages run docs",
"precheckin": "npm-run-all --serial copyright:check format:check cbuild lint:check test docs",
"publish-code-coverage": "npx codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/accessibility-insights-action.git"
},
"keywords": [
"actions"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/accessibility-insights-action/issues"
},
"homepage": "https://github.com/microsoft/accessibility-insights-action#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/marked": "^5.0.2",
"@types/marked-terminal": "^6.1.1",
"@types/normalize-path": "^3.0.2",
"@types/puppeteer-core": "^7.0.4",
"@types/serve-static": "^1.15.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-plugin-security": "^1.7.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-file-snapshot": "^0.7.0",
"jest-junit": "^16.0.0",
"js-yaml": "^4.1.0",
"license-check-and-add": "^4.0.5",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"simple-git": "^3.27.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typemoq": "^2.1.0",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"resolutions": {
"y18n@^4.0.0": "^5.0.5",
"tough-cookie": "^4.1.3",
"hosted-git-info@^2.1.4": "^3.0.8",
"ansi-regex@^4.1.0": "^5.0.1",
"cosmiconfig@^7.0.1": "^8.1.3",
"pac-resolver": "^7.0.1",
"socks": "^2.8.3",
"ws": "^8.17.1",
"path-to-regexp": "^1.9.0",
"express": "^4.20.0",
"serve-static": "^1.16.0",
"send": "^0.19.0"
}
}