forked from microsoft/accessibility-insights-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.92 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
{
"name": "accessibility-insights-service",
"private": true,
"description": "This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/accessibility-insights-service.git"
},
"scripts": {
"packages": "yarn workspaces foreach --no-private --parallel --verbose",
"clean": "yarn packages run clean && rimraf dist test-results",
"build": "yarn packages --topological-dev run build",
"cbuild": "yarn packages --topological-dev run cbuild",
"dbuild": "yarn install && npm-run-all --serial --npm-path npm syncpack:fix build",
"pack": "yarn packages --topological-dev run pack",
"test": "npx jest",
"test:nc": "npx jest --collectCoverage=false --maxWorkers=4",
"test:e2e": "npx jest functional-tests.local.spec.ts",
"publish-code-coverage": "./upload-to-codecov.sh",
"lint:check": "yarn packages run lint",
"lint:fix": "yarn packages run lint:fix",
"precheckin": "npm-run-all --serial format:check lint:check copyright:check syncpack:check cbuild test",
"format:fix": "npx prettier --write \"**/*\"",
"format:check": "npx prettier --check \"**/*\"",
"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",
"syncpack:check": "npx syncpack list-mismatches",
"syncpack:fix": "npx syncpack fix-mismatches",
"shellcheck": "./node_modules/shellcheck/shellcheck-stable/shellcheck ./packages/**/*.sh",
"pr:combine": "git push origin :combined-prs ; npx combine-dependabot-prs microsoft/accessibility-insights-service",
"circular:check": "npx madge --warning --circular --extensions js ./"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/accessibility-insights-service/issues"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.30.6",
"@typescript-eslint/parser": "^4.33.0",
"combine-dependabot-prs": "^1.0.5",
"commander": "^9.3.0",
"eslint": "^7.32.0",
"eslint-plugin-header": "^3.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sort-class-members": "^1.14.0",
"eslint-plugin-unicorn": "^40.1.0",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"jest-html-reporter": "^3.6.0",
"jest-junit": "^14.0.0",
"license-check-and-add": "^4.0.5",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"simple-git": "^3.10.0",
"syncpack": "^8.2.4",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@types/node": "^16.11.7",
"@npmcli/git": ">=2.1.0",
"adal-node": ">=0.2.3",
"ansi-regex": "5.0.1",
"async": ">=3.2.2",
"axe-core": "4.4.1",
"glob-parent": ">=5.1.2",
"json-schema": ">=0.4.0",
"minimist": ">=1.2.6",
"node-fetch": "^2.6.7",
"normalize-url": "6.1.0",
"set-value": ">=4.0.1",
"simple-get": ">=3.1.1",
"tar": ">=6.1.9"
},
"dependencies": {
"accessibility-insights-report": "4.4.0"
},
"packageManager": "[email protected]"
}