@form8ion/javascript 10.6.1 → 10.6.3

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 -0
  2. package/package.json +18 -14
package/README.md CHANGED
@@ -7,6 +7,7 @@ toolset
7
7
 
8
8
  [![Node CI Workflow Status][github-actions-ci-badge]][github-actions-ci-link]
9
9
  [![Codecov][coverage-badge]][coverage-link]
10
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/form8ion/javascript/badge)](https://api.securityscorecards.dev/projects/github.com/form8ion/javascript)
10
11
 
11
12
  <!--status-badges end -->
12
13
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@form8ion/javascript",
3
3
  "description": "JavaScript language plugin for the @form8ion toolset",
4
4
  "license": "MIT",
5
- "version": "10.6.1",
5
+ "version": "10.6.3",
6
6
  "engines": {
7
7
  "node": "^16.13.0 || >=18.0.0"
8
8
  },
@@ -46,7 +46,9 @@
46
46
  "watch": "run-s 'build:js -- --watch'",
47
47
  "prepack": "run-s build",
48
48
  "test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
49
- "test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'"
49
+ "test:unit:base": "npm-run-all --print-label build --parallel test:unit:mocha test:unit:vitest",
50
+ "test:unit:vitest": "DEBUG=any vitest run",
51
+ "test:unit:mocha": "DEBUG=any mocha 'src/**/*-test.js'"
50
52
  },
51
53
  "files": [
52
54
  "example.js",
@@ -65,10 +67,10 @@
65
67
  "@form8ion/eslint": "^4.0.0",
66
68
  "@form8ion/execa-wrapper": "^1.0.0-alpha.1",
67
69
  "@form8ion/husky": "^4.0.0",
68
- "@form8ion/javascript-core": "^8.3.2",
70
+ "@form8ion/javascript-core": "^9.0.0",
69
71
  "@form8ion/overridable-prompts": "^1.2.0",
70
72
  "@form8ion/prettier": "^1.0.1",
71
- "@form8ion/rollup": "^2.0.0",
73
+ "@form8ion/rollup": "^3.0.0",
72
74
  "@hapi/hoek": "^11.0.0",
73
75
  "@travi/cli-messages": "^1.1.0",
74
76
  "@travi/language-scaffolder-prompts": "^1.3.0",
@@ -86,16 +88,16 @@
86
88
  },
87
89
  "devDependencies": {
88
90
  "@babel/register": "7.21.0",
89
- "@cucumber/cucumber": "9.0.1",
90
- "@form8ion/babel-preset": "1.6.99",
91
- "@form8ion/commitlint-config": "1.0.45",
92
- "@form8ion/eslint-config": "5.0.27",
91
+ "@cucumber/cucumber": "9.1.1",
92
+ "@form8ion/babel-preset": "1.6.100",
93
+ "@form8ion/commitlint-config": "1.0.49",
94
+ "@form8ion/eslint-config": "5.0.30",
93
95
  "@form8ion/eslint-config-cucumber": "1.4.1",
94
96
  "@form8ion/eslint-config-mocha": "2.0.3",
95
- "@form8ion/remark-lint-preset": "5.0.0",
96
- "@rollup/plugin-node-resolve": "15.0.1",
97
+ "@form8ion/remark-lint-preset": "5.0.1",
98
+ "@rollup/plugin-node-resolve": "15.0.2",
97
99
  "@travi/any": "2.1.8",
98
- "ban-sensitive-files": "1.9.18",
100
+ "ban-sensitive-files": "1.9.19",
99
101
  "c8": "7.13.0",
100
102
  "chai": "4.3.7",
101
103
  "chai-as-promised": "7.1.1",
@@ -103,6 +105,7 @@
103
105
  "cz-conventional-changelog": "3.3.0",
104
106
  "gherkin-lint": "4.2.2",
105
107
  "husky": "8.0.3",
108
+ "jest-when": "3.5.2",
106
109
  "js-yaml": "4.1.0",
107
110
  "lockfile-lint": "4.10.1",
108
111
  "ls-engines": "0.9.0",
@@ -113,10 +116,11 @@
113
116
  "remark-cli": "11.0.0",
114
117
  "remark-toc": "8.0.1",
115
118
  "remark-usage": "10.0.1",
116
- "rimraf": "4.4.0",
119
+ "rimraf": "5.0.0",
117
120
  "rollup": "2.79.1",
118
121
  "rollup-plugin-auto-external": "2.0.0",
119
- "sinon": "15.0.2",
120
- "testdouble": "3.17.1"
122
+ "sinon": "15.0.4",
123
+ "testdouble": "3.17.2",
124
+ "vitest": "0.31.0"
121
125
  }
122
126
  }