-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
117 lines (117 loc) · 5.39 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
{
"name": "sa11y-monorepo",
"private": true,
"description": "Salesforce Accessibility Automated Testing Libraries and Tools (@sa11y packages)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/sa11y.git"
},
"bugs": {
"url": "https://github.com/salesforce/sa11y/issues"
},
"homepage": "https://github.com/salesforce/sa11y",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build && yarn workspace @sa11y/browser-lib build",
"build:ci": "yarn install --frozen-lockfile && yarn build",
"build:clean": "tsc --build --clean && rimraf packages/**/dist && yarn build:ci",
"build:watch": "tsc --build --watch",
"clean": "lerna exec rimraf node_modules/ dist/ tsconfig.tsbuildinfo && rimraf node_modules",
"commit": "! git diff --cached --exit-code && lint-staged && git-cz",
"install:clean": "lerna clean --yes && rimraf yarn.lock && rimraf node_modules && yarn install",
"install:update": "yarn audit; yarn upgrade-interactive --latest && yarn install:clean && yarn test:clean",
"lint": "eslint . --ext ts,js,md",
"lint:all": "tsc --noEmit && yarn lint && yarn lint:lockfile && yarn lint:deps && yarn lint:depgraph",
"lint:all:except:depgraph": "tsc --noEmit && yarn lint && yarn lint:lockfile && yarn lint:deps",
"lint:deps": "lerna exec depcheck",
"lint:depgraph": "yarn pkg:depgraph && git diff --quiet docs/sa11y_dependency_graph.svg || (echo 'Dependency graph needs to be updated!'; exit 1)",
"lint:fix": "yarn lint --fix",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"lint:staged": "lint-staged",
"lint:version": "lerna exec --stream --no-bail --since master vertioner",
"lint:watch": "esw --watch --changed --color --ext .js,.ts",
"pkg:diff": "lerna exec --stream --no-bail 'git diff --relative --stat origin/master'",
"pkg:list": "lerna list --long --all --toposort",
"pkg:deps": "yarn pkg:list --graph",
"pkg:depgraph": "package-dependency-graph --graphviz --svg docs/sa11y_dependency_graph.svg",
"release:changelog": "conventional-changelog --infile CHANGELOG.md --same-file --preset angular --output-unreleased",
"release:version": "yarn pkg:diff; lerna version --no-push --no-git-tag-version && yarn build:clean",
"release:version:auto": "yarn release:version --conventional-commits --no-changelog && yarn build:clean",
"release:publish": "yarn test:clean && lerna publish from-package",
"test": "jest --coverage --runInBand",
"test:ci": "yarn lint:all:except:depgraph && yarn test --ci --reporters=default --reporters=jest-junit",
"test:clean": "yarn build:clean && yarn test:ci",
"test:debug": "SA11Y_DEBUG=1 node --inspect node_modules/.bin/jest --runInBand --watch",
"test:watch": "jest --watch",
"test:auto": "SA11Y_AUTO=1 yarn test --json --outputFile jestResults.json",
"test:wdio": "wdio run wdio.conf.js --suite wdio --suite integration --suite browserLib < /dev/null",
"prepare": "is-ci || husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@tsconfig/node14": "1.0.3",
"@types/jest": "28.1.8",
"@types/node": "15.14.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@wdio/cli": "7.36.0",
"@wdio/jasmine-framework": "7.33.0",
"@wdio/local-runner": "7.36.0",
"@wdio/spec-reporter": "7.33.0",
"babel-jest": "28.1.3",
"chromedriver": "115.0.1",
"commitizen": "4.3.1",
"conventional-changelog-cli": "2.2.2",
"cpx2": "2.0.0",
"cspell": "6.31.3",
"depcheck": "1.4.3",
"doctoc": "2.2.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-notice": "0.9.10",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tsdoc": "0.3.0",
"eslint-watch": "8.0.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-jasmine2": "28.1.3",
"jest-junit": "16.0.0",
"lerna": "6.6.2",
"lint-staged": "13.3.0",
"lockfile-lint": "4.12.1",
"markdown-link-check": "3.11.2",
"package-dependency-graph": "1.14.4",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"vertioner": "1.0.6",
"wdio-chromedriver-service": "7.3.2",
"webdriverio": "7.36.0"
},
"engines": {
"node": "^16 || ^18 || ^20"
}
}