simple-wappalyzer 1.1.43 → 1.1.45
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 +9 -6
- package/src/categories.json +28 -0
- package/src/technologies.json +9018 -1141
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-wappalyzer",
|
|
3
3
|
"description": "A simple way to interacting with Wappalyzer.",
|
|
4
|
-
"homepage": "https://
|
|
5
|
-
"version": "1.1.
|
|
4
|
+
"homepage": "https://github.com/Kikobeats/simple-wappalyzer",
|
|
5
|
+
"version": "1.1.45",
|
|
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": {
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
],
|
|
67
67
|
"scripts": {
|
|
68
68
|
"clean": "rm -rf node_modules",
|
|
69
|
-
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
69
|
+
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
70
70
|
"lint": "standard-markdown README.md && standard",
|
|
71
71
|
"postinstall": "node scripts/postinstall",
|
|
72
72
|
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
73
|
-
"prerelease": "npm run update:check
|
|
73
|
+
"prerelease": "npm run update:check",
|
|
74
74
|
"pretest": "npm run lint",
|
|
75
75
|
"release": "standard-version -a",
|
|
76
76
|
"release:github": "conventional-github-releaser -p angular",
|
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
"update:check": "ncu -- --error-level 2"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT",
|
|
83
|
+
"ava": {
|
|
84
|
+
"workerThreads": false
|
|
85
|
+
},
|
|
83
86
|
"commitlint": {
|
|
84
87
|
"extends": [
|
|
85
88
|
"@commitlint/config-conventional"
|
package/src/categories.json
CHANGED
|
@@ -735,5 +735,33 @@
|
|
|
735
735
|
],
|
|
736
736
|
"name": "Cross border ecommerce",
|
|
737
737
|
"priority": 6
|
|
738
|
+
},
|
|
739
|
+
"107": {
|
|
740
|
+
"groups": [
|
|
741
|
+
1
|
|
742
|
+
],
|
|
743
|
+
"name": "Fulfilment",
|
|
744
|
+
"priority": 6
|
|
745
|
+
},
|
|
746
|
+
"108": {
|
|
747
|
+
"groups": [
|
|
748
|
+
1
|
|
749
|
+
],
|
|
750
|
+
"name": "Ecommerce frontends",
|
|
751
|
+
"priority": 6
|
|
752
|
+
},
|
|
753
|
+
"109": {
|
|
754
|
+
"groups": [
|
|
755
|
+
6
|
|
756
|
+
],
|
|
757
|
+
"name": "Domain parking",
|
|
758
|
+
"priority": 9
|
|
759
|
+
},
|
|
760
|
+
"110": {
|
|
761
|
+
"groups": [
|
|
762
|
+
8
|
|
763
|
+
],
|
|
764
|
+
"name": "Form Builders",
|
|
765
|
+
"priority": 8
|
|
738
766
|
}
|
|
739
767
|
}
|