simple-wappalyzer 1.1.51 → 1.1.53

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 CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Coverage Status](https://img.shields.io/coveralls/Kikobeats/simple-wappalyzer.svg?style=flat-square)](https://coveralls.io/github/Kikobeats/simple-wappalyzer)
5
5
  [![NPM Status](https://img.shields.io/npm/dm/simple-wappalyzer.svg?style=flat-square)](https://www.npmjs.org/package/simple-wappalyzer)
6
6
 
7
- > A simple way to interacting with [Wappalyzer](https://www.wappalyzer.com).
7
+ > A simple, pre-cached, ready-to-use way to interact with [Wappalyzer](https://www.wappalyzer.com).
8
8
 
9
9
  Although Wappalyzer has an [official library](https://github.com/AliasIO/wappalyzer), it performs network requests operations under the hood.
10
10
 
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.51",
5
+ "version": "1.1.53",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -32,12 +32,13 @@
32
32
  "jsdom": "~22.1.0",
33
33
  "lodash": "~4.17.21",
34
34
  "tough-cookie": "~4.1.2",
35
- "wappalyzer-core": "~6.10.62",
35
+ "wappalyzer-core": "~6.10.66",
36
36
  "write-json-file": "~4.3.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@commitlint/cli": "latest",
40
40
  "@commitlint/config-conventional": "latest",
41
+ "@ksmithut/prettier-standard": "latest",
41
42
  "ava": "latest",
42
43
  "browserless": "latest",
43
44
  "c8": "latest",
@@ -51,7 +52,6 @@
51
52
  "humanize-url": "2",
52
53
  "nano-staged": "latest",
53
54
  "npm-check-updates": "latest",
54
- "prettier-standard": "latest",
55
55
  "simple-git-hooks": "latest",
56
56
  "standard": "latest",
57
57
  "standard-markdown": "latest",
@@ -68,7 +68,6 @@
68
68
  "clean": "rm -rf node_modules",
69
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
- "postinstall": "node scripts/postinstall",
72
71
  "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
73
72
  "prerelease": "npm run update:check",
74
73
  "pretest": "npm run lint",
@@ -80,17 +79,15 @@
80
79
  "update:check": "ncu -- --error-level 2"
81
80
  },
82
81
  "license": "MIT",
83
- "ava": {
84
- "workerThreads": false
85
- },
86
82
  "commitlint": {
87
83
  "extends": [
88
84
  "@commitlint/config-conventional"
89
85
  ]
90
86
  },
91
87
  "nano-staged": {
92
- "*.js": [
93
- "prettier-standard"
88
+ "*.js,!*.min.js,": [
89
+ "prettier-standard",
90
+ "standard --fix"
94
91
  ],
95
92
  "*.md": [
96
93
  "standard-markdown"