Initial commit — jibo-cli v3.0.7 with bundled node_modules

This commit is contained in:
pasketti
2026-04-05 18:40:18 -04:00
commit b2569b4ce4
10488 changed files with 1631271 additions and 0 deletions

8
node_modules/electron-prebuilt/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
dist/
path.txt
.npmignore
.travis.yml
appveyor.yml
CONTRIBUTING.md
issue_template.md
test/

13
node_modules/electron-prebuilt/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,13 @@
os:
- linux
- osx
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master

7
node_modules/electron-prebuilt/CONTRIBUTING.md generated vendored Normal file
View File

@@ -0,0 +1,7 @@
releases for this module are handled by https://github.com/johnmuhl/electron-prebuilt-updater
versions published to npm should match the versions published to [github releases for electron](https://github.com/electron/electron/releases)
coding style should be `standard`:
[![js-standard-style](https://raw.githubusercontent.com/feross/standard/master/badge.png)](https://github.com/feross/standard)

7
node_modules/electron-prebuilt/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,7 @@
Copyright (c) 2015 Mathias Buus-Madsen, Max Ogden and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

112
node_modules/electron-prebuilt/README.md generated vendored Normal file
View File

@@ -0,0 +1,112 @@
# electron-prebuilt
[![Travis build status](http://img.shields.io/travis/electron-userland/electron-prebuilt.svg?style=flat)](http://travis-ci.org/electron-userland/electron-prebuilt)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/qd978ky9axl8m1m1?svg=true)](https://ci.appveyor.com/project/Atom/electron-prebuilt)
[![badge](https://nodei.co/npm/electron-prebuilt.png?downloads=true)](https://www.npmjs.com/package/electron-prebuilt)
Install [Electron](https://github.com/electron/electron) prebuilt binaries for
command-line use using npm. This module helps you easily install the `electron`
command for use on the command line without having to compile anything.
[Electron](http://electron.atom.io) is a JavaScript runtime that bundles Node.js
and Chromium. You use it similar to the `node` command on the command line for
executing JavaScript programs. For more info you can read [this intro blog post](http://maxogden.com/electron-fundamentals.html)
or dive into the [Electron documentation](http://electron.atom.io/docs).
## Installation
**Note** As of version 1.3.1, this package is published to npm under two names:
`electron` and `electron-prebuilt`. You can currently use either name, but
`electron` is recommended, as the `electron-prebuilt` name is deprecated, and
will only be published until the end of 2016.
Download and install the latest build of Electron for your OS and add it to your
project's `package.json` as a `devDependency`:
```shell
npm install electron --save-dev
```
This is the preferred way to use Electron, as it doesn't require users to
install Electron globally.
You can also use the `-g` flag (global) to symlink it into your PATH:
```shell
npm install -g electron
```
If that command fails with an `EACCESS` error you may have to run it again with `sudo`:
```shell
sudo npm install -g electron
```
Now you can just run `electron` to run electron:
```shell
electron
```
If you need to use an HTTP proxy you can [set these environment variables](https://github.com/request/request/tree/f0c4ec061141051988d1216c24936ad2e7d5c45d#controlling-proxy-behaviour-using-environment-variables).
If you want to change the architecture that is downloaded (e.g., `ia32` on an
`x64` machine), you can use the `--arch` flag with npm install or set the
`npm_config_arch` environment variable:
```shell
npm install --arch=ia32 electron
```
## About
Works on Mac, Windows and Linux OSes that Electron supports (e.g. Electron
[does not support Windows XP](https://github.com/electron/electron/issues/691)).
The version numbers of this module match the version number of the [official
Electron releases](https://github.com/electron/electron/releases), which
[do not follow semantic versioning](http://electron.atom.io/docs/tutorial/electron-versioning/).
This module is automatically released whenever a new version of Electron is
released thanks to [electron-prebuilt-updater](https://github.com/electron/electron-prebuilt-updater),
originally written by [John Muhl](https://github.com/johnmuhl/).
## Usage
First, you have to [write an Electron application](http://electron.atom.io/docs/tutorial/quick-start/).
Then, you can run your app using:
```shell
electron your-app/
```
## Related modules
- [electron-packager](https://github.com/electron-userland/electron-packager) -
Package and distribute your Electron app with OS-specific bundles
(.app, .exe etc)
- [electron-builder](https://github.com/electron-userland/electron-builder) -
create installers
- [menubar](https://github.com/maxogden/menubar) - high level way to create
menubar desktop applications with electron
Find more at the [awesome-electron](https://github.com/sindresorhus/awesome-electron) list.
## Programmatic usage
Most people use this from the command line, but if you require `electron` inside
your **Node app** (not your Electron app) it will return the file path to the
binary. Use this to spawn Electron from Node scripts:
```javascript
var electron = require('electron')
var proc = require('child_process')
// will something similar to print /Users/maf/.../Electron
console.log(electron)
// spawn Electron
var child = proc.spawn(electron)
```

25
node_modules/electron-prebuilt/appveyor.yml generated vendored Normal file
View File

@@ -0,0 +1,25 @@
build: off
branches:
only:
- master
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"
skip_tags: true
install:
- ps: Install-Product node $env:nodejs_version
- npm install npm
- .\node_modules\.bin\npm install
test_script:
- node --version
- .\node_modules\.bin\npm --version
- .\node_modules\.bin\npm test

10
node_modules/electron-prebuilt/cli.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env node
var electron = require('./')
var proc = require('child_process')
var child = proc.spawn(electron, process.argv.slice(2), {stdio: 'inherit'})
child.on('close', function (code) {
process.exit(code)
})

20
node_modules/electron-prebuilt/dist/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,20 @@
Copyright (c) 2016 GitHub Inc.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

26448
node_modules/electron-prebuilt/dist/LICENSES.chromium.html generated vendored Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/content_shell.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/electron generated vendored Executable file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/icudtl.dat generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/libffmpeg.so generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/libnode.so generated vendored Executable file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/am.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ar.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/bg.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/bn.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ca.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/cs.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/da.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/de.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/el.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/en-GB.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/en-US.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/es-419.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/es.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/et.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/fa.pak generated vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/fi.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/fil.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/fr.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/gu.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/he.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/hi.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/hr.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/hu.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/id.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/it.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ja.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/kn.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ko.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/lt.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/lv.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ml.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/mr.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ms.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/nb.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/nl.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/pl.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/pt-BR.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/pt-PT.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ro.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ru.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/sk.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/sl.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/sr.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/sv.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/sw.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/ta.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/te.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/th.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/tr.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/uk.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/vi.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/zh-CN.pak generated vendored Normal file

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/locales/zh-TW.pak generated vendored Normal file

Binary file not shown.

16748
node_modules/electron-prebuilt/dist/natives_blob.bin generated vendored Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

BIN
node_modules/electron-prebuilt/dist/snapshot_blob.bin generated vendored Normal file

Binary file not shown.

Binary file not shown.

1
node_modules/electron-prebuilt/dist/version generated vendored Normal file
View File

@@ -0,0 +1 @@
v1.4.3

Binary file not shown.

4
node_modules/electron-prebuilt/index.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
var fs = require('fs')
var path = require('path')
module.exports = path.join(__dirname, fs.readFileSync(path.join(__dirname, 'path.txt'), 'utf-8'))

56
node_modules/electron-prebuilt/install.js generated vendored Executable file
View File

@@ -0,0 +1,56 @@
#!/usr/bin/env node
// maintainer note - x.y.z-ab version in package.json -> x.y.z
var version = require('./package').version.replace(/-.*/, '')
var fs = require('fs')
var os = require('os')
var path = require('path')
var extract = require('extract-zip')
var download = require('electron-download')
var installedVersion = null
try {
installedVersion = fs.readFileSync(path.join(__dirname, 'dist', 'version'), 'utf-8').replace(/^v/, '')
} catch (err) {
// do nothing
}
var platform = process.env.npm_config_platform || os.platform()
function onerror (err) {
throw err
}
var paths = {
darwin: 'dist/Electron.app/Contents/MacOS/Electron',
freebsd: 'dist/electron',
linux: 'dist/electron',
win32: 'dist/electron.exe'
}
if (!paths[platform]) throw new Error('Electron builds are not available on platform: ' + platform)
if (installedVersion === version && fs.existsSync(path.join(__dirname, paths[platform]))) {
process.exit(0)
}
// downloads if not cached
download({
version: version,
platform: process.env.npm_config_platform,
arch: process.env.npm_config_arch,
strictSSL: process.env.npm_config_strict_ssl === 'true',
quiet: process.env.npm_config_loglevel === 'silent'
}, extractFile)
// unzips and makes path.txt point at the correct executable
function extractFile (err, zipPath) {
if (err) return onerror(err)
fs.writeFile(path.join(__dirname, 'path.txt'), paths[platform], function (err) {
if (err) return onerror(err)
extract(zipPath, {dir: path.join(__dirname, 'dist')}, function (err) {
if (err) return onerror(err)
})
})
}

6
node_modules/electron-prebuilt/issue_template.md generated vendored Normal file
View File

@@ -0,0 +1,6 @@
If you're having an issue _installing_ Electron, this is the place to report it.
If you're having an issue _using_ Electron, please report it at https://github.com/electron/electron/issues
* Electron version:
* Operating system:

69
node_modules/electron-prebuilt/package.json generated vendored Normal file
View File

@@ -0,0 +1,69 @@
{
"_from": "electron-prebuilt@1.4.3",
"_id": "electron-prebuilt@1.4.3",
"_inBundle": false,
"_integrity": "sha512-2WGOP1IeTHQbXJpLmt3n1pZM/RPiAvZpneqsAHKOZ++OYhWaryWEc7BkfZME3ILsZH6ZTQIozH+nQXorON6C7Q==",
"_location": "/electron-prebuilt",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "electron-prebuilt@1.4.3",
"name": "electron-prebuilt",
"escapedName": "electron-prebuilt",
"rawSpec": "1.4.3",
"saveSpec": null,
"fetchSpec": "1.4.3"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/electron-prebuilt/-/electron-prebuilt-1.4.3.tgz",
"_shasum": "65b219a67eaf64f5ab861e77e8c49bc7e6340598",
"_spec": "electron-prebuilt@1.4.3",
"_where": "/tmp/jibo-npm/jibo-cli-3.0.7",
"author": {
"name": "Mathias Buus"
},
"bin": {
"electron": "cli.js"
},
"bugs": {
"url": "https://github.com/electron-userland/electron-prebuilt/issues"
},
"bundleDependencies": false,
"dependencies": {
"electron-download": "^3.0.1",
"extract-zip": "^1.0.3"
},
"deprecated": "electron-prebuilt has been renamed to electron. For more details, see http://electron.atom.io/blog/2016/08/16/npm-install-electron",
"description": "Install prebuilt electron binaries for the command-line using npm",
"devDependencies": {
"home-path": "^0.1.1",
"path-exists": "^2.0.0",
"standard": "^5.4.1",
"tape": "^3.0.1"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/electron-userland/electron-prebuilt#readme",
"keywords": [
"electron"
],
"license": "MIT",
"main": "index.js",
"name": "electron-prebuilt",
"repository": {
"type": "git",
"url": "git+https://github.com/electron-userland/electron-prebuilt.git"
},
"scripts": {
"cache-clean": "rm -rf ~/.electron && rm -rf dist",
"postinstall": "node install.js",
"pretest": "npm run cache-clean && npm run postinstall",
"test": "tape test/*.js && standard"
},
"version": "1.4.3"
}

1
node_modules/electron-prebuilt/path.txt generated vendored Normal file
View File

@@ -0,0 +1 @@
dist/electron

15
node_modules/electron-prebuilt/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
var tape = require('tape')
var electron = require('../')
var path = require('path')
var pathExists = require('path-exists')
var getHomePath = require('home-path')()
tape('has local binary', function (t) {
t.ok(pathExists.sync(electron), 'electron was downloaded')
t.end()
})
tape('has cache folder', function (t) {
t.ok(pathExists.sync(path.join(getHomePath, './.electron')), 'cache exists')
t.end()
})