mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
* first action! (#1)
This commit is contained in:
parent
8deacc95b1
commit
ace1e6a69a
3750 changed files with 1155519 additions and 0 deletions
4
node_modules/unique-string/index.js
generated
vendored
Normal file
4
node_modules/unique-string/index.js
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
'use strict';
|
||||
const cryptoRandomString = require('crypto-random-string');
|
||||
|
||||
module.exports = () => cryptoRandomString(32);
|
21
node_modules/unique-string/license
generated
vendored
Normal file
21
node_modules/unique-string/license
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
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.
|
76
node_modules/unique-string/package.json
generated
vendored
Normal file
76
node_modules/unique-string/package.json
generated
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"_from": "unique-string@^1.0.0",
|
||||
"_id": "unique-string@1.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=",
|
||||
"_location": "/unique-string",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "unique-string@^1.0.0",
|
||||
"name": "unique-string",
|
||||
"escapedName": "unique-string",
|
||||
"rawSpec": "^1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/configstore"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz",
|
||||
"_shasum": "9e1057cca851abb93398f8b33ae187b99caec11a",
|
||||
"_spec": "unique-string@^1.0.0",
|
||||
"_where": "/home/shimataro/projects/actions/ssh-key-action/node_modules/configstore",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/unique-string/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"crypto-random-string": "^1.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Generate a unique random string",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/unique-string#readme",
|
||||
"keywords": [
|
||||
"unique",
|
||||
"string",
|
||||
"random",
|
||||
"uniq",
|
||||
"str",
|
||||
"rand",
|
||||
"text",
|
||||
"id",
|
||||
"identifier",
|
||||
"slug",
|
||||
"hex"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "unique-string",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/unique-string.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.0.0",
|
||||
"xo": {
|
||||
"esnext": true
|
||||
}
|
||||
}
|
32
node_modules/unique-string/readme.md
generated
vendored
Normal file
32
node_modules/unique-string/readme.md
generated
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
# unique-string [](https://travis-ci.org/sindresorhus/unique-string)
|
||||
|
||||
> Generate a unique random string
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save unique-string
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const uniqueString = require('unique-string');
|
||||
|
||||
uniqueString();
|
||||
//=> 'b4de2a49c8ffa3fbee04446f045483b2'
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### uniqueString()
|
||||
|
||||
Returns a 32 character unique string. Matches the length of MD5, which is [unique enough](http://stackoverflow.com/a/2444336/64949) for non-crypto purposes.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
Loading…
Add table
Add a link
Reference in a new issue