simple-wappalyzer 1.1.61 → 1.1.63
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/package.json +2 -1
- package/scripts/postinstall.js +5 -2
- package/src/technologies.json +2175 -522
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://github.com/Kikobeats/simple-wappalyzer",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.63",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"clean": "rm -rf node_modules",
|
|
68
68
|
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
69
69
|
"lint": "standard-markdown README.md && standard",
|
|
70
|
+
"postinstall": "node scripts/postinstall",
|
|
70
71
|
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
71
72
|
"prerelease": "npm run update:check",
|
|
72
73
|
"pretest": "npm run lint",
|
package/scripts/postinstall.js
CHANGED
|
@@ -11,7 +11,7 @@ const fetchTechnologies = async () => {
|
|
|
11
11
|
const data = await Promise.all(
|
|
12
12
|
chars.map(char =>
|
|
13
13
|
got(
|
|
14
|
-
`https://raw.githubusercontent.com/
|
|
14
|
+
`https://raw.githubusercontent.com/enthec/webappanalyzer/main/src/technologies/${char}.json`
|
|
15
15
|
).json()
|
|
16
16
|
)
|
|
17
17
|
)
|
|
@@ -24,12 +24,15 @@ const fetchTechnologies = async () => {
|
|
|
24
24
|
{}
|
|
25
25
|
)
|
|
26
26
|
|
|
27
|
+
// temporal fix until https://github.com/Kikobeats/simple-wappalyzer/issues/72 is closed
|
|
28
|
+
technologies['Elementor Addon Elements'] = 'WordPress'
|
|
29
|
+
|
|
27
30
|
return writeJsonFile('src/technologies.json', technologies)
|
|
28
31
|
}
|
|
29
32
|
|
|
30
33
|
const fetchCategories = async () => {
|
|
31
34
|
const categories = await got(
|
|
32
|
-
'https://raw.githubusercontent.com/
|
|
35
|
+
'https://raw.githubusercontent.com/enthec/webappanalyzer/main/src/categories.json'
|
|
33
36
|
).json()
|
|
34
37
|
|
|
35
38
|
return writeJsonFile('src/categories.json', categories)
|