forked from salesforce/sa11y
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 4.33 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
{
"name": "sa11y-monorepo",
"version": "0.2.0-beta",
"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",
"build:ci": "yarn install --frozen-lockfile && yarn build",
"build:clean": "yarn build --clean && rimraf packages/**/dist && yarn install && yarn build",
"build:watch": "yarn build --watch",
"commit": "! git diff --cached --exit-code && lint-staged && git-cz",
"install:clean": "lerna clean --yes; yarn install",
"lint": "eslint . --ext ts,js,md",
"lint:all": "yarn lint && yarn lint:lockfile && yarn lint:deps",
"lint:deps": "lerna exec depcheck",
"lint:fix": "yarn lint --fix",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"lint:staged": "lint-staged",
"lint:watch": "esw --watch --changed --color --ext .js,.ts",
"pkg:list": "lerna list --long --all --toposort",
"pkg:deps": "yarn pkg:list --graph",
"release:changelog": "conventional-changelog --infile CHANGELOG.md --same-file --preset angular --output-unreleased",
"release:version": "yarn lerna version --no-push --no-git-tag-version",
"release:version:auto": "yarn release:version --conventional-commits --no-changelog",
"release:publish": "yarn test:clean && yarn lerna publish from-package",
"test": "jest --coverage",
"test:ci": "yarn lint:all && yarn test --ci && yarn test:wdio",
"test:clean": "yarn build:clean && yarn test:ci",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --watch",
"test:watch": "yarn test --watch",
"test:wdio": "yarn workspace @sa11y/wdio test",
"update": "yarn audit; yarn upgrade-interactive --latest && yarn test:clean"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn test:clean",
"post-checkout": "yarn install && yarn build"
}
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@wdio/cli": "^6.2.0",
"@wdio/local-runner": "^6.2.0",
"@wdio/mocha-framework": "^6.2.0",
"@wdio/spec-reporter": "^6.1.23",
"@wdio/sync": "^6.2.0",
"babel-jest": "^26.1.0",
"chromedriver": "^83.0.1",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cspell": "^4.0.61",
"depcheck": "^1.0.0",
"doctoc": "^1.4.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-license-header": "^0.2.0",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.4",
"eslint-watch": "^7.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lerna": "^3.21.0",
"lint-staged": "^10.2.2",
"lockfile-lint": "^4.3.7",
"markdown-link-check": "^3.8.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"wdio-chromedriver-service": "^6.0.3",
"webdriverio": "^6.2.0"
},
"engines": {
"node": "^10 || ^12"
}
}