simple-wappalyzer 1.1.91 → 1.1.93

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/LICENSE.md CHANGED
File without changes
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.91",
5
+ "version": "1.1.93",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "got": "~11.8.6",
32
- "happy-dom": "~20.7.0",
32
+ "happy-dom": "~20.8.3",
33
33
  "lodash": "~4.17.21",
34
34
  "tough-cookie": "~6.0.0",
35
35
  "wappalyzer-core": "6",
@@ -61,6 +61,18 @@
61
61
  "scripts",
62
62
  "src"
63
63
  ],
64
+ "scripts": {
65
+ "clean": "rm -rf node_modules",
66
+ "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
67
+ "lint": "standard",
68
+ "postinstall": "node scripts/postinstall",
69
+ "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
70
+ "pretest": "npm run lint",
71
+ "release": "standard-version -a",
72
+ "release:github": "github-generate-release",
73
+ "release:tags": "git push --follow-tags origin HEAD:master",
74
+ "test": "c8 ava"
75
+ },
64
76
  "license": "MIT",
65
77
  "commitlint": {
66
78
  "extends": [
@@ -84,17 +96,5 @@
84
96
  "simple-git-hooks": {
85
97
  "commit-msg": "npx commitlint --edit",
86
98
  "pre-commit": "npx nano-staged"
87
- },
88
- "scripts": {
89
- "clean": "rm -rf node_modules",
90
- "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
91
- "lint": "standard",
92
- "postinstall": "node scripts/postinstall",
93
- "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
94
- "pretest": "npm run lint",
95
- "release": "standard-version -a",
96
- "release:github": "github-generate-release",
97
- "release:tags": "git push --follow-tags origin HEAD:master",
98
- "test": "c8 ava"
99
99
  }
100
- }
100
+ }
package/src/index.js CHANGED
@@ -65,7 +65,7 @@ module.exports = async ({ url, headers, html }) => {
65
65
 
66
66
  return wappalyzer.resolve(detections)
67
67
  } finally {
68
- await window.close()
68
+ await window.happyDOM.close()
69
69
  }
70
70
  }
71
71