-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.json
More file actions
57 lines (57 loc) · 1.66 KB
/
metadata.json
File metadata and controls
57 lines (57 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$id": "pcit/npm",
"$comment": "https://docs.ci.khs1994.com/usage/",
"description": "The NPM plugin can be used to publish libraries to public or private registries.",
"github": "https://github.com/pcit-plugins/pcit-npm",
"tags": "JS",
"author": "PCIT",
"title": "JSON schema for configuring PCIT CI/CD plugin",
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"username": {
"type": "string",
"description": "npm username"
},
"password": {
"type": "string",
"description": "npm user password"
},
"email": {
"type": "string",
"description": "npm user email"
},
"token": {
"type": "string",
"description": "npm user token"
},
"tag": {
"type": "string",
"description": "npm package tag, --tag",
"default": " current"
},
"registry": {
"type": "string",
"description": "--registry",
"default": " https://registry.npmjs.org"
},
"skip_verify": {
"type":"boolean",
"description": "skip verify https",
"default": false
},
"fail_on_version_conflict": {
"type":"boolean",
"description": "fail on version conflict",
"default": true
},
"access": {
"type": "string",
"description": "--access <public|restricted>",
"default": " public",
"enum": [
"public",
"restricted"
]
}
}
}