-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.39 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.39 KB
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
{
"name": "lessmark-workspace",
"private": true,
"version": "0.1.6",
"description": "The markdown alternative that agents (and humans) love.",
"license": "MIT",
"workspaces": [
"packages/lessmark"
],
"scripts": {
"build": "npm run build --workspace lessmark && cargo check --workspace",
"build:site": "npm run build --prefix site",
"test": "npm run test:js && npm run test:python && npm run test:rust",
"test:js": "npm run test --workspace lessmark",
"test:python": "powershell -NoProfile -ExecutionPolicy Bypass -Command \"$env:PYTHONPATH='packages/python/src'; python -m unittest discover packages/python/tests\"",
"test:rust": "cargo test --workspace",
"test:docs": "node scripts/check-docs.mjs",
"test:editors": "node --check editors/vscode/extension.js && node scripts/check-editors.mjs",
"test:conformance": "node scripts/conformance.mjs",
"test:fuzz": "node scripts/fuzz.mjs",
"test:stress": "node scripts/stress.mjs",
"test:security": "node scripts/security.mjs",
"test:readiness": "node scripts/readiness.mjs",
"test:soak": "node scripts/soak.mjs",
"check:release": "node scripts/release-check.mjs",
"check": "npm run build && npm test && npm run test:docs && npm run test:editors && npm run test:conformance && npm run test:security && npm run test:fuzz && npm run test:stress && npm run test:soak && npm run test:readiness"
}
}