-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.solidarity
42 lines (42 loc) · 1010 Bytes
/
.solidarity
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
{
"$schema": "https://json.schemastore.org/solidaritySchema",
"requirements": {
"node": [
{
"rule": "cli",
"binary": "node",
"semver": ">=12.0.0",
"version": "--version"
}
],
"npm": [
{
"rule": "cli",
"binary": "npm",
"semver": ">=5.0.0",
"version": "--version"
}
],
"yarn": [
{
"rule": "cli",
"binary": "yarn",
"semver": ">=3.0.0",
"version": "--version"
}
],
"package.json": [
{
"rule": "file",
"location": "./package.json"
}
],
"git email": [
{
"rule": "shell",
"command": "git config user.email",
"match": ".+@.+"
}
]
}
}