crawler-user-agents 1.0.130 → 1.0.131

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.
@@ -27,7 +27,7 @@ jobs:
27
27
  with:
28
28
  node-version: 20
29
29
  registry-url: https://registry.npmjs.org/
30
- - run: npm install pacote@11.1.11
30
+ - run: npm clean-install
31
31
  - run: git checkout .
32
32
  - run: npm version --no-git-tag-version `node -e 'pacote=require("pacote");pacote.manifest("crawler-user-agents").then(pkgJson => { console.log(pkgJson.version); });'`
33
33
  - run: npm version --no-git-tag-version patch
package/.travis.yml CHANGED
@@ -4,7 +4,7 @@ python: 3.11.0
4
4
 
5
5
  install:
6
6
  - pip3 install jsonschema pytest
7
- - npm install pacote@11.1.11
7
+ - npm clean-install
8
8
 
9
9
  script:
10
10
  - set -e
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crawler-user-agents",
3
- "version": "1.0.130",
3
+ "version": "1.0.131",
4
4
  "main": "crawler-user-agents.json",
5
5
  "typings": "./index.d.ts",
6
6
  "author": "Martin Monperrus <martin.monperrus@gnieh.org>",
@@ -14,5 +14,8 @@
14
14
  "bugs": {
15
15
  "url": "https://github.com/monperrus/crawler-user-agents/issues"
16
16
  },
17
- "homepage": "https://github.com/monperrus/crawler-user-agents#readme"
17
+ "homepage": "https://github.com/monperrus/crawler-user-agents#readme",
18
+ "devDependencies": {
19
+ "pacote": "11.1.11"
20
+ }
18
21
  }