stack-analyze 1.1.6 → 1.1.7
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/CHANGELOG.md +13 -0
- package/{about/index.js → about.js} +6 -4
- package/cli.js +12 -11
- package/env/bitly.env.js +1 -0
- package/env/movie.env.js +1 -0
- package/env/twitchID.env.js +1 -0
- package/functions/animeInfo.js +9 -39
- package/functions/bitly.js +8 -9
- package/functions/cryptoList.js +9 -38
- package/functions/gitUser.js +6 -9
- package/functions/hardware.js +32 -24
- package/functions/moviesInfo.js +10 -38
- package/functions/multipleStack.js +9 -29
- package/functions/pageSpeed.js +13 -13
- package/functions/singleStack.js +9 -32
- package/functions/twitch.js +46 -0
- package/hash/aboutOpts.js +9 -11
- package/hash/hardwareTools.js +3 -3
- package/hash/infoTools.js +46 -24
- package/hash/mainTools.js +9 -9
- package/{index.js → index.cjs} +167 -52
- package/index.mjs +474 -0
- package/models/aboutTables.js +2 -2
- package/models/animeTable.js +33 -0
- package/models/cryptoTables.js +32 -0
- package/models/hardwareTables.js +87 -0
- package/models/movieTables.js +33 -0
- package/models/stackTables.js +23 -0
- package/models/twitchTables.js +28 -0
- package/package.json +16 -9
package/package.json
CHANGED
|
@@ -1,28 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stack-analyze",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "cli tech stack analyze and pagespeed with node.js using the wappalyzer module. with google pagespeed api, hardware and crypto market",
|
|
5
|
-
"main": "index.
|
|
6
|
+
"main": "index.mjs",
|
|
6
7
|
"bin": {
|
|
7
8
|
"stack-analyze": "cli.js"
|
|
8
9
|
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./index.cjs",
|
|
13
|
+
"import": "./index.mjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
9
16
|
"dependencies": {
|
|
10
|
-
"axios": "^0.
|
|
11
|
-
"cli-progress": "^3.
|
|
17
|
+
"axios": "^0.26.0",
|
|
18
|
+
"cli-progress": "^3.10.0",
|
|
12
19
|
"coingecko-api": "^1.0.10",
|
|
13
20
|
"colors": "^1.4.0",
|
|
14
21
|
"console-table-printer": "^2.10.0",
|
|
15
22
|
"figlet": "^1.5.2",
|
|
16
23
|
"inquirer": "^8.2.0",
|
|
17
|
-
"systeminformation": "^5.
|
|
24
|
+
"systeminformation": "^5.11.6",
|
|
18
25
|
"timeago.js": "^4.0.2",
|
|
19
|
-
"wappalyzer": "^6.
|
|
26
|
+
"wappalyzer": "^6.10.17"
|
|
20
27
|
},
|
|
21
28
|
"devDependencies": {
|
|
22
|
-
"eslint": "^
|
|
29
|
+
"eslint": "^8.10.0",
|
|
23
30
|
"gh-pages": "^3.2.3",
|
|
24
|
-
"jest": "^27.
|
|
25
|
-
"jsdoc": "^3.6.
|
|
31
|
+
"jest": "^27.5.1",
|
|
32
|
+
"jsdoc": "^3.6.10",
|
|
26
33
|
"minami": "^1.2.3"
|
|
27
34
|
},
|
|
28
35
|
"scripts": {
|