websequencediagrams 3.0.0 → 4.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.
Files changed (1) hide show
  1. package/package.json +22 -15
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "websequencediagrams",
3
3
  "description": "Interface to websequencediagrams.com",
4
- "version": "3.0.0",
4
+ "version": "4.0.0",
5
5
  "author": "Joe Hildebrand <joe-github@cursive.net>",
6
6
  "contributors": [
7
7
  "Ed Crump <ed.crump@gmail.com> (https://github.com/icedawn)",
@@ -30,29 +30,36 @@
30
30
  "scripts": {
31
31
  "test": "ava",
32
32
  "lint": "eslint . --ext js,cjs,mjs,md bin/*",
33
- "coverage": "nyc -r lcov npm test",
34
- "coveralls": "nyc report --reporter=text-lcov | coveralls",
35
- "precoveralls": "npm run coverage",
33
+ "coverage": "c8 -r lcov npm test",
36
34
  "release": "npm version patch && git push --follow-tags && npm publish"
37
35
  },
38
36
  "devDependencies": {
39
- "@cto.af/eslint-config": "^0.1.7",
40
- "@types/node": "^18.11.5",
41
- "ava": "^5.0.1",
42
- "coveralls": "^3.1.1",
43
- "eslint": "^8.26.0",
44
- "eslint-plugin-jsdoc": "^39.3.24",
37
+ "@cto.af/eslint-config": "^2.0.3",
38
+ "@types/node": "^20.3.2",
39
+ "ava": "^5.3.1",
40
+ "c8": "8.0.0",
41
+ "eslint": "^8.43.0",
42
+ "eslint-plugin-jsdoc": "^46.4.2",
45
43
  "eslint-plugin-markdown": "^3.0.0",
46
44
  "eslint-plugin-node": "^11.1.0",
47
- "nock": "^13.2.9",
48
- "nyc": "^15.1.0",
45
+ "nock": "^13.3.1",
49
46
  "tmp-promise": "^3.0.3"
50
47
  },
51
48
  "dependencies": {
52
- "node-fetch": "^2.6.5",
53
- "yargs": "^17.6.0"
49
+ "node-fetch": "2",
50
+ "yargs": "^17.7.2"
51
+ },
52
+ "pnpm": {
53
+ "overrides": {
54
+ "semver": ">=7.5.3",
55
+ "word-wrap": "npm:@aashutoshrathi/word-wrap"
56
+ }
57
+ },
58
+ "overrides": {
59
+ "semver": ">=7.5.3",
60
+ "word-wrap": "npm:@aashutoshrathi/word-wrap"
54
61
  },
55
62
  "engines": {
56
- "node": ">=14"
63
+ "node": ">=16"
57
64
  }
58
65
  }