@form8ion/javascript 11.7.3 → 11.9.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/README.md +4 -1
- package/lib/index.js +69 -34
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +69 -34
- package/lib/index.mjs.map +1 -1
- package/package.json +14 -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": "11.
|
|
5
|
+
"version": "11.9.0",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "^16.14.0 || >=18.0.0"
|
|
8
8
|
},
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"homepage": "https://npm.im/@form8ion/javascript",
|
|
13
13
|
"runkitExampleFilename": "./example.js",
|
|
14
14
|
"exports": {
|
|
15
|
+
"module": "./lib/index.mjs",
|
|
15
16
|
"require": "./lib/index.js",
|
|
16
17
|
"import": "./lib/index.mjs"
|
|
17
18
|
},
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"lint:sensitive": "ban",
|
|
28
29
|
"lint:peer": "npm ls >/dev/null",
|
|
29
30
|
"lint:engines": "ls-engines",
|
|
30
|
-
"lint:publish": "publint",
|
|
31
|
+
"lint:publish": "publint --strict",
|
|
31
32
|
"generate:md": "remark . --output",
|
|
32
33
|
"pregenerate:md": "run-s build",
|
|
33
34
|
"prepare": "husky install",
|
|
@@ -88,31 +89,31 @@
|
|
|
88
89
|
},
|
|
89
90
|
"devDependencies": {
|
|
90
91
|
"@babel/register": "7.22.5",
|
|
91
|
-
"@cucumber/cucumber": "9.
|
|
92
|
-
"@form8ion/babel-preset": "1.6.
|
|
93
|
-
"@form8ion/commitlint-config": "1.0.
|
|
94
|
-
"@form8ion/eslint-config": "6.0.
|
|
92
|
+
"@cucumber/cucumber": "9.4.0",
|
|
93
|
+
"@form8ion/babel-preset": "1.6.108",
|
|
94
|
+
"@form8ion/commitlint-config": "1.0.55",
|
|
95
|
+
"@form8ion/eslint-config": "6.0.2",
|
|
95
96
|
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
96
97
|
"@form8ion/eslint-config-mocha": "3.0.0",
|
|
97
98
|
"@form8ion/remark-lint-preset": "6.0.0",
|
|
98
|
-
"@rollup/plugin-node-resolve": "15.1
|
|
99
|
+
"@rollup/plugin-node-resolve": "15.2.1",
|
|
99
100
|
"@travi/any": "2.1.8",
|
|
100
|
-
"ban-sensitive-files": "1.
|
|
101
|
+
"ban-sensitive-files": "1.10.0",
|
|
101
102
|
"c8": "8.0.1",
|
|
102
|
-
"chai": "4.3.
|
|
103
|
+
"chai": "4.3.8",
|
|
103
104
|
"chai-as-promised": "7.1.1",
|
|
104
105
|
"cross-env": "7.0.3",
|
|
105
106
|
"cz-conventional-changelog": "3.3.0",
|
|
106
107
|
"gherkin-lint": "4.2.2",
|
|
107
108
|
"husky": "8.0.3",
|
|
108
|
-
"jest-when": "3.
|
|
109
|
+
"jest-when": "3.6.0",
|
|
109
110
|
"js-yaml": "4.1.0",
|
|
110
111
|
"lockfile-lint": "4.12.0",
|
|
111
112
|
"ls-engines": "0.9.0",
|
|
112
113
|
"mocha": "10.2.0",
|
|
113
114
|
"mock-fs": "5.2.0",
|
|
114
|
-
"npm-run-
|
|
115
|
-
"publint": "0.2.
|
|
115
|
+
"npm-run-all2": "6.0.6",
|
|
116
|
+
"publint": "0.2.2",
|
|
116
117
|
"remark-cli": "11.0.0",
|
|
117
118
|
"remark-toc": "8.0.1",
|
|
118
119
|
"remark-usage": "10.0.1",
|
|
@@ -121,6 +122,6 @@
|
|
|
121
122
|
"rollup-plugin-auto-external": "2.0.0",
|
|
122
123
|
"sinon": "15.2.0",
|
|
123
124
|
"testdouble": "3.18.0",
|
|
124
|
-
"vitest": "0.34.
|
|
125
|
+
"vitest": "0.34.2"
|
|
125
126
|
}
|
|
126
127
|
}
|