is-antibot 0.0.5 → 1.0.0
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 +0 -0
- package/package.json +18 -18
package/LICENSE.md
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "is-antibot",
|
|
3
3
|
"description": "Identify if a response is an antibot challenge from CloudFlare, Akamai, DataDome, Vercel, and more.",
|
|
4
4
|
"homepage": "https://github.com/microlinkhq/is-antibot",
|
|
5
|
-
"version": "0.0
|
|
5
|
+
"version": "1.0.0",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./src/index.js"
|
|
8
8
|
},
|
|
@@ -63,22 +63,6 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"src"
|
|
65
65
|
],
|
|
66
|
-
"scripts": {
|
|
67
|
-
"clean": "rm -rf node_modules",
|
|
68
|
-
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
69
|
-
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
70
|
-
"lint": "standard",
|
|
71
|
-
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
72
|
-
"pretest": "npm run lint",
|
|
73
|
-
"release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
|
|
74
|
-
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
75
|
-
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
76
|
-
"release:github": "github-generate-release",
|
|
77
|
-
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
78
|
-
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
79
|
-
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
80
|
-
"test": "c8 ava"
|
|
81
|
-
},
|
|
82
66
|
"license": "MIT",
|
|
83
67
|
"ava": {
|
|
84
68
|
"files": [
|
|
@@ -108,5 +92,21 @@
|
|
|
108
92
|
"simple-git-hooks": {
|
|
109
93
|
"commit-msg": "npx commitlint --edit",
|
|
110
94
|
"pre-commit": "npx nano-staged"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"clean": "rm -rf node_modules",
|
|
98
|
+
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
99
|
+
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
100
|
+
"lint": "standard",
|
|
101
|
+
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
102
|
+
"pretest": "npm run lint",
|
|
103
|
+
"release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
|
|
104
|
+
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
105
|
+
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
106
|
+
"release:github": "github-generate-release",
|
|
107
|
+
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
108
|
+
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
109
|
+
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
110
|
+
"test": "c8 ava"
|
|
111
111
|
}
|
|
112
|
-
}
|
|
112
|
+
}
|