apipost-cli 1.0.9 → 1.0.14
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/README.md +4 -0
- package/dist/37.index.js +452 -0
- package/dist/841.index.js +6984 -0
- package/dist/action.js +4 -0
- package/dist/apipost-http-schema.json +129 -0
- package/dist/bridge.js +1010 -0
- package/dist/build/Release/cpufeatures.node +0 -0
- package/dist/esprima.js +3756 -0
- package/dist/events.js +977 -0
- package/dist/index.js +565963 -0
- package/dist/index1.js +26 -0
- package/dist/lib/protocol/crypto/build/Release/sshcrypto.node +0 -0
- package/dist/module.js +34 -0
- package/dist/pagent.exe +0 -0
- package/dist/setup-node-sandbox.js +461 -0
- package/dist/setup-sandbox.js +545 -0
- package/dist/snappy.darwin-arm64.node +0 -0
- package/dist/xdg-open +1066 -0
- package/package.json +13 -4
- package/apipost-reports/apipost-reports-2024-01-06 15:16:30.html +0 -750
- package/bin/cli.js +0 -231
- package/bin/template.js +0 -803
- /package/{bin/apipost-reports → dist/apipost-cli}//346/265/213/350/257/225.html" +0 -0
- /package/{bin/apipost-reports → dist/apipost-cli}//346/265/213/350/257/225.json" +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apipost-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "Apipost 命令行运行工具",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
6
9
|
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
+
"clean-dist": "rm -rf ./dist",
|
|
12
|
+
"copy-report": "cp -r ./bin/apipost-reports ./dist/apipost-cli/",
|
|
13
|
+
"build": "npm run clean-dist && ncc build bin/cli.js --external uglify-js -o dist/ && npm run copy-report"
|
|
8
14
|
},
|
|
9
15
|
"bin": {
|
|
10
|
-
"apipost": "./
|
|
16
|
+
"apipost": "./dist/index.js"
|
|
11
17
|
},
|
|
12
18
|
"keywords": [],
|
|
13
19
|
"author": "Apipost Team",
|
|
14
20
|
"license": "UNLICENSED",
|
|
15
21
|
"dependencies": {
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@vercel/ncc": "^0.38.1",
|
|
16
25
|
"apipost-inside-tools": "^0.1.69",
|
|
17
26
|
"apipost-runtime": "^1.1.126",
|
|
18
27
|
"cli-progress": "^3.12.0",
|