data-type-utils 1.4.2 → 1.5.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  Handy methods for verifying and dealing with various data types.
4
4
 
5
- Tested with Node.js version 8.16.0, 10.15.3, 10.16.3, and 12.15.0.
5
+ Tested with Node.js versions 8.16.0, 10.15.3, 10.16.3, 12.15.0, and 22.17.1.
package/package.json CHANGED
@@ -1,28 +1,27 @@
1
1
  {
2
2
  "name": "data-type-utils",
3
- "version": "1.4.2",
3
+ "version": "1.5.2",
4
4
  "description": "Handy methods for verifying and dealing with various data types.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "test": "./node_modules/.bin/mocha --reporter spec"
7
+ "test": "mocha --reporter spec"
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "git+ssh://git@gitlab.com/createlab-public/node-data-type-utils.git"
11
+ "url": "git+ssh://git@gitlab.com/chrisbartley/node-data-type-utils.git"
12
12
  },
13
13
  "author": "Chris Bartley <bartley@cmu.edu>",
14
14
  "license": "UNLICENSED",
15
15
  "bugs": {
16
- "url": "https://gitlab.com/createlab-public/node-data-type-utils/issues"
16
+ "url": "https://gitlab.com/chrisbartley/node-data-type-utils/issues"
17
17
  },
18
- "homepage": "https://gitlab.com/createlab-public/node-data-type-utils#README",
18
+ "homepage": "https://gitlab.com/chrisbartley/node-data-type-utils#README",
19
19
  "devDependencies": {
20
- "chai": "^4.2.0",
21
- "mocha": "^8.0.1",
20
+ "chai": "^5.2.1",
21
+ "mocha": "^11.7.1",
22
22
  "should": "^13.2.3"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=8.16.0"
26
- },
27
- "dependencies": {}
26
+ }
28
27
  }