-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.51 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "woml-repository",
"version": "1.0.7",
"private": true,
"description": "WOML workflow automation monorepo",
"author": "Mohamed Ali Ben Othmen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dali-benothmen/woml.git"
},
"scripts": {
"install:check": "bun install --cwd woml --frozen-lockfile && bun install --cwd woml-cli --frozen-lockfile",
"build": "bun run --cwd woml-cli build",
"build:release": "bun run --cwd woml-cli build:release",
"test": "bun run --cwd woml-cli test:portable",
"typecheck": "bun run --cwd woml-cli typecheck",
"format:check": "cargo fmt --all --manifest-path core/Cargo.toml -- --check",
"lint": "bun run --cwd woml-cli test:communication-provider-clippy",
"pack": "bun run --cwd woml-cli pack:release",
"test:identity": "bun run --cwd woml-cli test:release-identity",
"test:release-automation": "bun run --cwd woml-cli test:release-automation",
"test:documentation": "bun run --cwd woml-cli test:documentation",
"test:architecture": "bun run --cwd woml-cli test:architecture-separation",
"test:final-review": "bun run --cwd woml-cli test:final-review",
"release:check": "bun woml-cli/scripts/release-check.ts",
"test:release": "bun run release:check"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
],
"*.{json,md,yml,yaml,toml}": [
"prettier --write"
],
"*.rs": [
"cargo fmt --manifest-path core/Cargo.toml --"
]
}
}