@squidcloud/cli 1.0.0
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/dist/index.js +13 -0
- package/dist/index.js.LICENSE.txt +52 -0
- package/package.json +46 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* mime-db
|
|
3
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
4
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* mime-types
|
|
10
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
11
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
12
|
+
* MIT Licensed
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! *****************************************************************************
|
|
16
|
+
Copyright (c) Microsoft Corporation.
|
|
17
|
+
|
|
18
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
19
|
+
purpose with or without fee is hereby granted.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
22
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
23
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
24
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
25
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
26
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
27
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
28
|
+
***************************************************************************** */
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @license
|
|
32
|
+
* Lodash <https://lodash.com/>
|
|
33
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
34
|
+
* Released under MIT license <https://lodash.com/license>
|
|
35
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
36
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Wrapper for built-in http.js to emulate the browser XMLHttpRequest object.
|
|
41
|
+
*
|
|
42
|
+
* This can be used with JS designed for browsers to improve reuse of code and
|
|
43
|
+
* allow the use of existing libraries.
|
|
44
|
+
*
|
|
45
|
+
* Usage: include("XMLHttpRequest.js") and use XMLHttpRequest per W3C specs.
|
|
46
|
+
*
|
|
47
|
+
* @author Dan DeFelippi <dan@driverdan.com>
|
|
48
|
+
* @contributor David Ellis <d.f.ellis@ieee.org>
|
|
49
|
+
* @license MIT
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@squidcloud/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The Squid Cloud CLI",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prebuild": "rimraf dist",
|
|
8
|
+
"build": "webpack --mode=production",
|
|
9
|
+
"build:dev": "webpack --mode=development",
|
|
10
|
+
"build:prod": "webpack --mode=production",
|
|
11
|
+
"watch": "webpack --watch",
|
|
12
|
+
"deploy": "npm run build && npm uninstall -g @squidcloud/cli && npm install -g ."
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist/**/*"
|
|
16
|
+
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"squid": "dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"author": "",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@angular-devkit/schematics": "15.0.4",
|
|
25
|
+
"@angular-devkit/schematics-cli": "15.0.4",
|
|
26
|
+
"@squidcloud/schematics": "1.0.2",
|
|
27
|
+
"axios": "^1.2.2",
|
|
28
|
+
"form-data": "^4.0.0",
|
|
29
|
+
"yargs": "^17.6.2"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"cpx": "^1.5.0",
|
|
33
|
+
"@types/node": "^18.11.11",
|
|
34
|
+
"@types/node-fetch": "^2.6.2",
|
|
35
|
+
"@types/yargs": "^17.0.17",
|
|
36
|
+
"@webpack-cli/generators": "^3.0.1",
|
|
37
|
+
"prettier": "^2.8.1",
|
|
38
|
+
"rimraf": "^3.0.2",
|
|
39
|
+
"ts-loader": "^9.4.2",
|
|
40
|
+
"tsconfig-paths-webpack-plugin": "^4.0.0",
|
|
41
|
+
"typescript": "^4.9.3",
|
|
42
|
+
"webpack": "^5.75.0",
|
|
43
|
+
"webpack-cli": "^5.0.1",
|
|
44
|
+
"copy-webpack-plugin": "^11.0.0"
|
|
45
|
+
}
|
|
46
|
+
}
|