simple-wappalyzer 1.1.43 → 1.1.44
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 +1 -1
- package/package.json +3 -3
- package/src/categories.json +7 -0
- package/src/technologies.json +3183 -683
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ $ npm install simple-wappalyzer --save
|
|
|
22
22
|
const wappalyzer = require('simple-wappalyzer')
|
|
23
23
|
const getHTML = require('html-get')
|
|
24
24
|
|
|
25
|
-
getHTML('https://kikobeats.com')
|
|
25
|
+
getHTML('https://kikobeats.com', { getBrowserless: require('browserless') })
|
|
26
26
|
.then(({ url, html, statusCode, headers }) =>
|
|
27
27
|
wappalyzer({ url, html, statusCode, headers })
|
|
28
28
|
)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "simple-wappalyzer",
|
|
3
3
|
"description": "A simple way to interacting with Wappalyzer.",
|
|
4
4
|
"homepage": "https://nicedoc.io/Kikobeats/simple-wappalyzer",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.44",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"got": "~11.8.5",
|
|
32
32
|
"jsdom": "~20.0.0",
|
|
33
33
|
"lodash": "~4.17.21",
|
|
34
|
-
"tough-cookie": "~4.
|
|
35
|
-
"wappalyzer-core": "~6.10.
|
|
34
|
+
"tough-cookie": "~4.1.0",
|
|
35
|
+
"wappalyzer-core": "~6.10.38",
|
|
36
36
|
"write-json-file": "~4.3.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|