-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.24 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
{
"name": "root",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geersch/retry.git"
},
"author": "Christophe Geers",
"license": "MIT",
"scripts": {
"build": "FORCE_COLOR=true yarn workspaces foreach --exclude root run build",
"clean": "FORCE_COLOR=true yarn workspaces foreach --exclude root run clean",
"format": "FORCE_COLOR=true yarn workspaces foreach --exclude root run format --write",
"format:ci": "FORCE_COLOR=true yarn workspaces foreach --exclude root run format --log-level error --check",
"lint": "FORCE_COLOR=true yarn workspaces foreach --exclude root run lint --fix",
"lint:ci": "FORCE_COLOR=true yarn workspaces foreach --exclude root run lint",
"test": "FORCE_COLOR=true yarn workspaces foreach --exclude root run test run",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"bugs": {
"url": "https://github.com/geersch/retry/issues"
},
"homepage": "https://github.com/geersch/retry#readme",
"packageManager": "yarn@3.4.1",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"pinst": "^3.0.0"
}
}