Home
last modified time | relevance | path

Searched refs:funding (Results 1 – 25 of 33) sorted by relevance

12

/third_party/node/deps/npm/test/lib/commands/
Dfund.js6 const funding = { variable
15 funding, property
26 funding, property
36 funding, property
45 funding, property
76 funding, property
83 funding: 'https://example.com/sponsor', property
94 funding: { property
106 funding: ['https://one.example.com', 'https://two.example.com'], property
119 funding: [ property
[all …]
Dpkg.js585 funding: 'http://example.com', property
595 funding: 'http://example.com', property
606 funding: 'http://example.com', property
615 funding: 'http://example.com', property
/third_party/node/deps/npm/node_modules/libnpmfund/lib/
Dindex.js8 function normalizeFunding (funding) { argument
11 const sources = [].concat(funding || []).map(normalizeItem)
12 return Array.isArray(funding) ? sources : sources[0]
17 function isValidFunding (funding) { argument
18 if (!funding) {
22 if (Array.isArray(funding)) {
23 return funding.every(f => !Array.isArray(f) && isValidFunding(f))
27 var parsed = new URL(funding.url || funding)
87 function attachFundingInfo (target, funding) { argument
88 if (funding && isValidFunding(funding)) {
[all …]
/third_party/node/deps/npm/node_modules/libnpmfund/
DREADME.md8 retrieving **funding** information for packages installed using
32 funding: { url: 'https://example.com' },
36 funding: { url: 'http://collective.example.com' }
67 Reads **funding** info from a npm install and returns a promise for a
68 tree object that only contains packages in which funding info is defined.
74 things such as printing a `6 packages are looking for funding` msg.
82 Reads **funding** info from a given install tree and returns a tree object
83 that only contains packages in which funding info is defined.
101 things such as printing a `6 packages are looking for funding` msg.
103 ##### <a name="fund.normalizeFunding"></a> `> fund.normalizeFunding(funding) -> Object`
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/
Dreify-output.js.test.cjs29 "funding": 0
46 "funding": 0,
75 "funding": 0,
90 "funding": 0,
113 "funding": 0
130 "funding": 0,
152 "funding": 0,
172 "funding": 0
189 "funding": 0,
211 "funding": 0,
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Dfund.js.test.cjs9 1: Foo funding available at the following URL: http://example.com/foo
10 2: Lorem funding available at the following URL: http://example.com/foo-lorem
11 Run \`npm fund [<package-spec>] --which=1\`, for example, to open the first funding URL listed in t…
27 …AP fund containing multi-level nested deps with no funding > should omit dependencies with no fund…
28 nested-no-funding-packages@1.0.0
53 Run \`npm fund [<package-spec>] --which=1\`, for example, to open the first funding URL listed in t…
59 Run \`npm fund [<package-spec>] --which=1\`, for example, to open the first funding URL listed in t…
62 …/lib/commands/fund.js TAP fund with no package containing funding > should print empty funding inf…
63 no-funding-package@0.0.0
67 exports[`test/lib/commands/fund.js TAP sub dep with fund info and a parent with no funding info > s…
[all …]
/third_party/node/deps/npm/lib/utils/
Dreify-output.js40 funding: 0, property
69 summary.funding = fundingInfo.length
173 const packagesFundingMessage = (npm, { funding }) => { argument
174 if (!funding) {
179 const pkg = funding === 1 ? 'package' : 'packages'
180 const is = funding === 1 ? 'is' : 'are'
181 npm.output(`${funding} ${pkg} ${is} looking for funding`)
/third_party/node/deps/npm/node_modules/@npmcli/arborist/bin/
Dfunding.js25 if (node.package.funding) {
26 log.info(node.name, node.location, node.package.funding)
31 if (node.package.funding) {
32 log.info(node.name, node.location, node.package.funding)
/third_party/node/deps/npm/docs/content/commands/
Dnpm-fund.md4 description: Retrieve funding information
17 dependencies that are looking for funding in a tree structure, listing
18 the type of funding and the url to visit. If a package name is provided
19 then it tries to open its funding url using the
21 funding sources for the package, the user will be instructed to pass the
48 +-- https://example.com/npmcli-funding
49 | `-- @npmcli/test-funding
134 If there are multiple funding sources, which 1-indexed source URL to open.
Dnpm-pkg.md158 For example, setting a `funding` value across all configured workspaces
162 npm pkg set funding=https://example.com --ws
Dnpm-query.md113 "funding": {},
Dnpm-find-dupes.md157 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-install-ci-test.md162 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-dedupe.md217 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-ci.md216 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-install-test.md239 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-update.md341 acknowledging the number of dependencies looking for funding. See [`npm
Dnpm-link.md290 acknowledging the number of dependencies looking for funding. See [`npm
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/
Dindex.js135 if (data.funding && typeof data.funding === 'string') {
136 data.funding = { url: data.funding }
/third_party/node/deps/npm/test/lib/utils/
Dreify-output.js72 funding: { type: 'foo', url: 'http://example.com' }, property
105 funding: { type: 'foo', url: 'http://example.com' }, property
134 funding: { type: 'foo', url: 'http://example.com' }, property
144 funding: { type: 'foo', url: 'http://example.com' }, property
154 funding: { type: 'foo', url: 'http://example.com' }, property
/third_party/node/deps/npm/lib/commands/
Dfund.js109 visit: ({ name, version, funding }) => { field
110 const [fundingSource] = [].concat(normalizeFunding(funding)).filter(isValidFunding)
188 const { funding } =
192 const validSources = [].concat(normalizeFunding(funding)).filter(isValidFunding)
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/
Dnormalize.js255 if (data.funding && typeof data.funding === 'string') {
256 data.funding = { url: data.funding }
/third_party/vulkan-loader/
DREADME.md61 companies and individuals making this possible: Valve Corporation, funding
/third_party/node/deps/npm/docs/content/configuring-npm/
Dpackage-json.md223 ### funding subsection
231 "funding": {
236 "funding": {
241 "funding": "http://example.com/donate",
243 "funding": [
257 Users can use the `npm fund` subcommand to list the `funding` URLs of all
259 each funding url is also available when providing the project name such as:
/third_party/node/deps/npm/docs/content/using-npm/
Dconfig.md591 acknowledging the number of dependencies looking for funding. See [`npm
1661 If there are multiple funding sources, which 1-indexed source URL to open.

12