stack-analyze 1.1.2 → 1.1.6
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 +46 -0
- package/about/index.js +27 -83
- package/cli.js +227 -0
- package/functions/animeInfo.js +13 -3
- package/functions/bitly.js +43 -0
- package/functions/cryptoList.js +80 -0
- package/functions/hardware.js +28 -17
- package/functions/moviesInfo.js +84 -0
- package/functions/multipleStack.js +11 -5
- package/functions/pageSpeed.js +56 -86
- package/functions/singleStack.js +10 -4
- package/hash/aboutOpts.js +55 -0
- package/hash/hardwareTools.js +47 -0
- package/hash/infoTools.js +90 -0
- package/hash/mainTools.js +67 -0
- package/index.js +328 -373
- package/models/aboutTables.js +40 -0
- package/package.json +19 -17
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// table model module
|
|
2
|
+
const { Table } = require("console-table-printer");
|
|
3
|
+
|
|
4
|
+
// youtube model
|
|
5
|
+
const youtubeDevTable = new Table({
|
|
6
|
+
columns: [
|
|
7
|
+
{
|
|
8
|
+
name: "youtubeChannel",
|
|
9
|
+
alignment: "left",
|
|
10
|
+
color: "green"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: "recomendation",
|
|
14
|
+
alignment: "left",
|
|
15
|
+
color: "cyan"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
// ideas model
|
|
21
|
+
const ideasTable = new Table({
|
|
22
|
+
columns: [
|
|
23
|
+
{
|
|
24
|
+
name: "author",
|
|
25
|
+
alignment: "left",
|
|
26
|
+
color: "green"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: "tool",
|
|
30
|
+
alignment: "left",
|
|
31
|
+
color: "green"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
// exports tables
|
|
37
|
+
module.exports = {
|
|
38
|
+
youtubeDevTable,
|
|
39
|
+
ideasTable
|
|
40
|
+
};
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stack-analyze",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "cli tech stack analyze and pagespeed with node.js using the wappalyzer module. with google pagespeed api and
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"description": "cli tech stack analyze and pagespeed with node.js using the wappalyzer module. with google pagespeed api, hardware and crypto market",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"stack-analyze": "
|
|
7
|
+
"stack-analyze": "cli.js"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"axios": "^0.21.
|
|
11
|
-
"cli-progress": "^3.9.
|
|
10
|
+
"axios": "^0.21.4",
|
|
11
|
+
"cli-progress": "^3.9.1",
|
|
12
|
+
"coingecko-api": "^1.0.10",
|
|
12
13
|
"colors": "^1.4.0",
|
|
13
|
-
"console-table-printer": "^2.
|
|
14
|
-
"figlet": "^1.5.
|
|
15
|
-
"inquirer": "^8.
|
|
16
|
-
"systeminformation": "^5.
|
|
14
|
+
"console-table-printer": "^2.10.0",
|
|
15
|
+
"figlet": "^1.5.2",
|
|
16
|
+
"inquirer": "^8.2.0",
|
|
17
|
+
"systeminformation": "^5.9.9",
|
|
17
18
|
"timeago.js": "^4.0.2",
|
|
18
|
-
"wappalyzer": "^6.
|
|
19
|
+
"wappalyzer": "^6.9.2"
|
|
19
20
|
},
|
|
20
21
|
"devDependencies": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"jsdoc": "^3.6.6",
|
|
22
|
+
"eslint": "^7.32.0",
|
|
23
|
+
"gh-pages": "^3.2.3",
|
|
24
|
+
"jest": "^27.3.1",
|
|
25
|
+
"jsdoc": "^3.6.7",
|
|
26
26
|
"minami": "^1.2.3"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"start": "node
|
|
29
|
+
"start": "node cli.js",
|
|
30
30
|
"test": "jest",
|
|
31
31
|
"lint:test": "eslint . --ext .js",
|
|
32
32
|
"lint:fix": "eslint . --ext .js --fix",
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
"ascii art",
|
|
48
48
|
"github user info",
|
|
49
49
|
"anime search",
|
|
50
|
-
"hardware information"
|
|
50
|
+
"hardware information",
|
|
51
|
+
"crypto market info",
|
|
52
|
+
"movie info"
|
|
51
53
|
],
|
|
52
54
|
"author": "Intermachine Developers",
|
|
53
55
|
"license": "MIT",
|