-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
27 lines (27 loc) · 1.4 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
{
"name": "kayle_workspace",
"description": "Extremely fast accessibility engine for nodejs",
"workspaces": [
"kayle",
"fast_htmlcs",
"fast_axecore",
"kayle_innate/pkg"
],
"scripts": {
"build": "((cd fast_axecore && npm run build) & (cd fast_htmlcs && npm run build)) && cd kayle && npm run prepare && npm run compile:test && cd ../",
"build:fast_htmlcs": "cd fast_htmlcs && yarn build",
"build:fast_axe": "cd fast_axecore && yarn build",
"build:kayle": "cd kayle && yarn build",
"build:test": "yarn build && npx playwright test --workers=1",
"build:test:fast_htmlcs": "yarn build:fast_htmlcs && yarn test:playwright:htmlcs",
"build:test:axe": "yarn build:fast_axecore && yarn test:axe",
"build:test:playwright:axe": "yarn build:fast_axecore && yarn test:playwright:axe",
"build:innate": "cd kayle_innate && wasm-pack build --target nodejs",
"pub:fast_htmlcs": "yarn build:fast_htmlcs && yarn npm publish",
"pub:fast_axecore": "yarn build:fast_axecore && yarn npm publish",
"pub:kayle": "yarn build:kayle && yarn npm publish",
"fix": "npx prettier --write '**/*.{ts,tsx,md}'",
"test:innate": "cd kayle_innate && RUST_LOG=info wasm-pack test --node --firefox --headless --release"
},
"packageManager": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90"
}