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.
@@ -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.2",
4
- "description": "cli tech stack analyze and pagespeed with node.js using the wappalyzer module. with google pagespeed api and hardware",
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": "index.js"
7
+ "stack-analyze": "cli.js"
8
8
  },
9
9
  "dependencies": {
10
- "axios": "^0.21.1",
11
- "cli-progress": "^3.9.0",
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.8.2",
14
- "figlet": "^1.5.0",
15
- "inquirer": "^8.0.0",
16
- "systeminformation": "^5.5.0",
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.5.26"
19
+ "wappalyzer": "^6.9.2"
19
20
  },
20
21
  "devDependencies": {
21
- "better-docs": "^2.3.2",
22
- "eslint": "^7.21.0",
23
- "gh-pages": "^3.1.0",
24
- "jest": "^26.6.3",
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 index.js",
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",