Current Path: > > lib > node_modules > npm > node_modules > > libnpmorg
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
.travis.yml | File | 72 bytes | March 10 2021 14:36:38. | |
CHANGELOG.md | File | 553 bytes | March 10 2021 14:36:38. | |
LICENSE | File | 717 bytes | March 10 2021 14:36:38. | |
PULL_REQUEST_TEMPLATE | File | 183 bytes | March 10 2021 14:36:38. | |
README.md | File | 4638 bytes | March 10 2021 14:36:38. | |
appveyor.yml | File | 334 bytes | March 10 2021 14:36:38. | |
index.js | File | 1953 bytes | March 10 2021 14:36:38. | |
package.json | File | 2093 bytes | March 10 2021 14:36:38. |
'use strict' const eu = encodeURIComponent const fetch = require('npm-registry-fetch') const figgyPudding = require('figgy-pudding') const getStream = require('get-stream') const validate = require('aproba') const OrgConfig = figgyPudding({ Promise: { default: () => Promise } }) // From https://github.com/npm/registry/blob/master/docs/orgs/memberships.md const cmd = module.exports = {} class MembershipDetail {} cmd.set = (org, user, role, opts) => { if (typeof role === 'object' && !opts) { opts = role role = undefined } opts = OrgConfig(opts) return new opts.Promise((resolve, reject) => { validate('SSSO|SSZO', [org, user, role, opts]) user = user.replace(/^@?/, '') org = org.replace(/^@?/, '') fetch.json(`/-/org/${eu(org)}/user`, opts.concat({ method: 'PUT', body: { user, role } })).then(resolve, reject) }).then(ret => Object.assign(new MembershipDetail(), ret)) } cmd.rm = (org, user, opts) => { opts = OrgConfig(opts) return new opts.Promise((resolve, reject) => { validate('SSO', [org, user, opts]) user = user.replace(/^@?/, '') org = org.replace(/^@?/, '') fetch(`/-/org/${eu(org)}/user`, opts.concat({ method: 'DELETE', body: { user }, ignoreBody: true })).then(resolve, reject) }).then(() => null) } class Roster {} cmd.ls = (org, opts) => { opts = OrgConfig(opts) return new opts.Promise((resolve, reject) => { getStream.array(cmd.ls.stream(org, opts)).then(entries => { const obj = {} for (let [key, val] of entries) { obj[key] = val } return obj }).then(resolve, reject) }).then(ret => Object.assign(new Roster(), ret)) } cmd.ls.stream = (org, opts) => { opts = OrgConfig(opts) validate('SO', [org, opts]) org = org.replace(/^@?/, '') return fetch.json.stream(`/-/org/${eu(org)}/user`, '*', opts.concat({ mapJson (value, [key]) { return [key, value] } })) }
SILENT KILLER Tool