@schemastore/bowerrc 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +2 -2
- package/index.d.ts +18 -6
- package/package.json +4 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
This package contains type definitions for bowerrc.
|
|
6
6
|
|
|
7
7
|
## Details
|
|
8
|
-
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bowerrc.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:30 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -25,7 +25,19 @@ export interface JSONSchemaForBowerrcFiles {
|
|
|
25
25
|
registry?:
|
|
26
26
|
| string
|
|
27
27
|
| {
|
|
28
|
-
|
|
28
|
+
/**
|
|
29
|
+
* An array of URLs pointing to read-only Bower registries. A string means only one. When looking into the registry for an endpoint, Bower will query these registries by the specified order.
|
|
30
|
+
*/
|
|
31
|
+
search?: unknown[] | string;
|
|
32
|
+
/**
|
|
33
|
+
* The URL to use when registering packages.
|
|
34
|
+
*/
|
|
35
|
+
register?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The URL to use when publishing packages.
|
|
38
|
+
*/
|
|
39
|
+
publish?: string;
|
|
40
|
+
[k: string]: unknown;
|
|
29
41
|
};
|
|
30
42
|
/**
|
|
31
43
|
* The proxy to use for http requests.
|
|
@@ -52,7 +64,7 @@ export interface JSONSchemaForBowerrcFiles {
|
|
|
52
64
|
*/
|
|
53
65
|
ca?:
|
|
54
66
|
| {
|
|
55
|
-
[k: string]:
|
|
67
|
+
[k: string]: unknown;
|
|
56
68
|
}
|
|
57
69
|
| string;
|
|
58
70
|
/**
|
|
@@ -66,7 +78,7 @@ export interface JSONSchemaForBowerrcFiles {
|
|
|
66
78
|
packages?: string;
|
|
67
79
|
registry?: string;
|
|
68
80
|
links?: string;
|
|
69
|
-
[k: string]:
|
|
81
|
+
[k: string]: unknown;
|
|
70
82
|
};
|
|
71
83
|
/**
|
|
72
84
|
* Where to store temporary files and folders
|
|
@@ -100,11 +112,11 @@ export interface JSONSchemaForBowerrcFiles {
|
|
|
100
112
|
* A script to run before uninstall
|
|
101
113
|
*/
|
|
102
114
|
preuninstall?: string;
|
|
103
|
-
[k: string]:
|
|
115
|
+
[k: string]: unknown;
|
|
104
116
|
};
|
|
105
117
|
/**
|
|
106
118
|
* Bower will ignore these dependencies when resolving packages
|
|
107
119
|
*/
|
|
108
120
|
ignoredDependencies?: string[];
|
|
109
|
-
[k: string]:
|
|
121
|
+
[k: string]: unknown;
|
|
110
122
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for bowerrc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.d.ts",
|
|
7
7
|
"name": "@schemastore/bowerrc",
|
|
8
|
-
"repository": "https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bowerrc",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "f9f699c648e23028d4016f631ddf6a049fe60efc1ef3f87f026bfe042195374e",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|