@form8ion/eslint-config-extender 1.1.14 → 1.1.17
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/example.js +1 -1
- package/lib/index.cjs.js +8 -8
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.es.js +1 -1
- package/lib/index.es.js.map +1 -1
- package/package.json +20 -20
package/example.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// #### Import
|
|
2
2
|
// remark-usage-ignore-next 2
|
|
3
3
|
import stubbedFs from 'mock-fs';
|
|
4
|
-
import {scaffold as javascriptScaffolder} from '@
|
|
4
|
+
import {scaffold as javascriptScaffolder} from '@form8ion/javascript';
|
|
5
5
|
import {scaffold, extendEslintConfig} from './lib/index.cjs';
|
|
6
6
|
|
|
7
7
|
// remark-usage-ignore-next
|
package/lib/index.cjs.js
CHANGED
|
@@ -6,7 +6,7 @@ var fs = require('fs');
|
|
|
6
6
|
var util = require('util');
|
|
7
7
|
var yaml = require('write-yaml');
|
|
8
8
|
var deepmerge = require('deepmerge');
|
|
9
|
-
var
|
|
9
|
+
var javascript = require('@form8ion/javascript');
|
|
10
10
|
var javascriptCore = require('@form8ion/javascript-core');
|
|
11
11
|
var project = require('@form8ion/project');
|
|
12
12
|
|
|
@@ -63,13 +63,13 @@ function highLevel (options, javascriptScaffolderFactory) {
|
|
|
63
63
|
languages: {
|
|
64
64
|
[javaScriptLanguageChoice]: javascriptScaffolderFactory({
|
|
65
65
|
...options.decisions,
|
|
66
|
-
[
|
|
67
|
-
[
|
|
68
|
-
[
|
|
69
|
-
[
|
|
70
|
-
[
|
|
71
|
-
[
|
|
72
|
-
[
|
|
66
|
+
[javascript.questionNames.PROJECT_TYPE]: 'Package',
|
|
67
|
+
[javascript.questionNames.PROJECT_TYPE_CHOICE]: PLUGIN_NAME,
|
|
68
|
+
[javascript.questionNames.UNIT_TESTS]: false,
|
|
69
|
+
[javascript.questionNames.INTEGRATION_TESTS]: false,
|
|
70
|
+
[javascript.questionNames.CONFIGURE_LINTING]: false,
|
|
71
|
+
[javascript.questionNames.DIALECT]: javascriptCore.dialects.COMMON_JS,
|
|
72
|
+
[javascript.questionNames.SHOULD_BE_SCOPED]: true
|
|
73
73
|
})
|
|
74
74
|
}
|
|
75
75
|
}
|
package/lib/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":["../thirdparty-wrappers/write-yaml.js","../src/scaffold.js","../src/constants.js","../src/high-level.js"],"sourcesContent":["import {promisify} from 'util';\nimport yaml from 'write-yaml';\n\nexport default promisify(yaml);\n","import {promises as fs} from 'fs';\nimport writeYaml from '../thirdparty-wrappers/write-yaml';\n\nexport default async function ({projectRoot, scope, projectName}) {\n const configShortName = projectName.substring('eslint-config-'.length);\n\n await Promise.all([\n writeYaml(`${projectRoot}/.eslintrc.yml`, {root: true, extends: [`@${scope}`, '.']}),\n fs.writeFile(\n `${projectRoot}/index.js`,\n `module.exports = {extends: '@form8ion/${configShortName}'};\\n`\n ),\n fs.writeFile(\n `${projectRoot}/example.js`,\n `module.exports = {\n extends: [\n '@${scope}',\n '@${scope}/${configShortName}'\n ]\n};\n`\n )\n ]);\n\n return {\n scripts: {'lint:js': 'eslint .'},\n dependencies: [`@form8ion/${projectName}`],\n devDependencies: [`@${scope}/eslint-config`],\n nextSteps: [\n {summary: 'Save the extended `@form8ion` eslint-config as an exact version'},\n {summary: 'Document saving this config using the dev flag'},\n {summary: 'Link to the extended `@form8ion` config in the README'}\n ]\n };\n}\n","export const PLUGIN_NAME = 'ESLint Config';\n","import deepmerge from 'deepmerge';\nimport {questionNames as jsQuestionNames} from '@
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":["../thirdparty-wrappers/write-yaml.js","../src/scaffold.js","../src/constants.js","../src/high-level.js"],"sourcesContent":["import {promisify} from 'util';\nimport yaml from 'write-yaml';\n\nexport default promisify(yaml);\n","import {promises as fs} from 'fs';\nimport writeYaml from '../thirdparty-wrappers/write-yaml';\n\nexport default async function ({projectRoot, scope, projectName}) {\n const configShortName = projectName.substring('eslint-config-'.length);\n\n await Promise.all([\n writeYaml(`${projectRoot}/.eslintrc.yml`, {root: true, extends: [`@${scope}`, '.']}),\n fs.writeFile(\n `${projectRoot}/index.js`,\n `module.exports = {extends: '@form8ion/${configShortName}'};\\n`\n ),\n fs.writeFile(\n `${projectRoot}/example.js`,\n `module.exports = {\n extends: [\n '@${scope}',\n '@${scope}/${configShortName}'\n ]\n};\n`\n )\n ]);\n\n return {\n scripts: {'lint:js': 'eslint .'},\n dependencies: [`@form8ion/${projectName}`],\n devDependencies: [`@${scope}/eslint-config`],\n nextSteps: [\n {summary: 'Save the extended `@form8ion` eslint-config as an exact version'},\n {summary: 'Document saving this config using the dev flag'},\n {summary: 'Link to the extended `@form8ion` config in the README'}\n ]\n };\n}\n","export const PLUGIN_NAME = 'ESLint Config';\n","import deepmerge from 'deepmerge';\nimport {questionNames as jsQuestionNames} from '@form8ion/javascript';\nimport {dialects} from '@form8ion/javascript-core';\nimport {scaffold, questionNames as projectQuestionNames} from '@form8ion/project';\nimport {PLUGIN_NAME} from './constants';\n\nexport default function (options, javascriptScaffolderFactory) {\n const javaScriptLanguageChoice = 'JavaScript';\n\n return scaffold(\n deepmerge(\n options,\n {\n decisions: {[projectQuestionNames.PROJECT_LANGUAGE]: javaScriptLanguageChoice},\n languages: {\n [javaScriptLanguageChoice]: javascriptScaffolderFactory({\n ...options.decisions,\n [jsQuestionNames.PROJECT_TYPE]: 'Package',\n [jsQuestionNames.PROJECT_TYPE_CHOICE]: PLUGIN_NAME,\n [jsQuestionNames.UNIT_TESTS]: false,\n [jsQuestionNames.INTEGRATION_TESTS]: false,\n [jsQuestionNames.CONFIGURE_LINTING]: false,\n [jsQuestionNames.DIALECT]: dialects.COMMON_JS,\n [jsQuestionNames.SHOULD_BE_SCOPED]: true\n })\n }\n }\n )\n );\n}\n"],"names":["promisify","yaml","fs","scaffold","deepmerge","projectQuestionNames","jsQuestionNames","dialects"],"mappings":";;;;;;;;;;;;;;;;;AAGA,gBAAeA,cAAS,CAACC,wBAAI,CAAC;;ACAf,uBAAc,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,WAAW,CAAC,EAAE;AAClE,EAAE,MAAM,eAAe,GAAG,WAAW,CAAC,SAAS,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC;AACzE;AACA,EAAE,MAAM,OAAO,CAAC,GAAG,CAAC;AACpB,IAAI,SAAS,CAAC,CAAC,EAAE,WAAW,CAAC,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;AACxF,IAAIC,WAAE,CAAC,SAAS;AAChB,MAAM,CAAC,EAAE,WAAW,CAAC,SAAS,CAAC;AAC/B,MAAM,CAAC,sCAAsC,EAAE,eAAe,CAAC,KAAK,CAAC;AACrE,KAAK;AACL,IAAIA,WAAE,CAAC,SAAS;AAChB,MAAM,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC;AACjC,MAAM,CAAC;AACP;AACA,MAAM,EAAE,KAAK,CAAC;AACd,MAAM,EAAE,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC;AACjC;AACA;AACA,CAAC;AACD,KAAK;AACL,GAAG,CAAC,CAAC;AACL;AACA,EAAE,OAAO;AACT,IAAI,OAAO,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;AACpC,IAAI,YAAY,EAAE,CAAC,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,CAAC;AAC9C,IAAI,eAAe,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;AAChD,IAAI,SAAS,EAAE;AACf,MAAM,CAAC,OAAO,EAAE,iEAAiE,CAAC;AAClF,MAAM,CAAC,OAAO,EAAE,gDAAgD,CAAC;AACjE,MAAM,CAAC,OAAO,EAAE,uDAAuD,CAAC;AACxE,KAAK;AACL,GAAG,CAAC;AACJ;;AClCY,MAAC,WAAW,GAAG;;ACMZ,kBAAQ,EAAE,OAAO,EAAE,2BAA2B,EAAE;AAC/D,EAAE,MAAM,wBAAwB,GAAG,YAAY,CAAC;AAChD;AACA,EAAE,OAAOC,gBAAQ;AACjB,IAAIC,6BAAS;AACb,MAAM,OAAO;AACb,MAAM;AACN,QAAQ,SAAS,EAAE,CAAC,CAACC,qBAAoB,CAAC,gBAAgB,GAAG,wBAAwB,CAAC;AACtF,QAAQ,SAAS,EAAE;AACnB,UAAU,CAAC,wBAAwB,GAAG,2BAA2B,CAAC;AAClE,YAAY,GAAG,OAAO,CAAC,SAAS;AAChC,YAAY,CAACC,wBAAe,CAAC,YAAY,GAAG,SAAS;AACrD,YAAY,CAACA,wBAAe,CAAC,mBAAmB,GAAG,WAAW;AAC9D,YAAY,CAACA,wBAAe,CAAC,UAAU,GAAG,KAAK;AAC/C,YAAY,CAACA,wBAAe,CAAC,iBAAiB,GAAG,KAAK;AACtD,YAAY,CAACA,wBAAe,CAAC,iBAAiB,GAAG,KAAK;AACtD,YAAY,CAACA,wBAAe,CAAC,OAAO,GAAGC,uBAAQ,CAAC,SAAS;AACzD,YAAY,CAACD,wBAAe,CAAC,gBAAgB,GAAG,IAAI;AACpD,WAAW,CAAC;AACZ,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG,CAAC;AACJ;;;;;;"}
|
package/lib/index.es.js
CHANGED
|
@@ -2,7 +2,7 @@ import { promises } from 'fs';
|
|
|
2
2
|
import { promisify } from 'util';
|
|
3
3
|
import yaml from 'write-yaml';
|
|
4
4
|
import deepmerge from 'deepmerge';
|
|
5
|
-
import { questionNames as questionNames$1 } from '@
|
|
5
|
+
import { questionNames as questionNames$1 } from '@form8ion/javascript';
|
|
6
6
|
import { dialects } from '@form8ion/javascript-core';
|
|
7
7
|
import { scaffold as scaffold$1, questionNames } from '@form8ion/project';
|
|
8
8
|
|
package/lib/index.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../thirdparty-wrappers/write-yaml.js","../src/scaffold.js","../src/constants.js","../src/high-level.js"],"sourcesContent":["import {promisify} from 'util';\nimport yaml from 'write-yaml';\n\nexport default promisify(yaml);\n","import {promises as fs} from 'fs';\nimport writeYaml from '../thirdparty-wrappers/write-yaml';\n\nexport default async function ({projectRoot, scope, projectName}) {\n const configShortName = projectName.substring('eslint-config-'.length);\n\n await Promise.all([\n writeYaml(`${projectRoot}/.eslintrc.yml`, {root: true, extends: [`@${scope}`, '.']}),\n fs.writeFile(\n `${projectRoot}/index.js`,\n `module.exports = {extends: '@form8ion/${configShortName}'};\\n`\n ),\n fs.writeFile(\n `${projectRoot}/example.js`,\n `module.exports = {\n extends: [\n '@${scope}',\n '@${scope}/${configShortName}'\n ]\n};\n`\n )\n ]);\n\n return {\n scripts: {'lint:js': 'eslint .'},\n dependencies: [`@form8ion/${projectName}`],\n devDependencies: [`@${scope}/eslint-config`],\n nextSteps: [\n {summary: 'Save the extended `@form8ion` eslint-config as an exact version'},\n {summary: 'Document saving this config using the dev flag'},\n {summary: 'Link to the extended `@form8ion` config in the README'}\n ]\n };\n}\n","export const PLUGIN_NAME = 'ESLint Config';\n","import deepmerge from 'deepmerge';\nimport {questionNames as jsQuestionNames} from '@
|
|
1
|
+
{"version":3,"file":"index.es.js","sources":["../thirdparty-wrappers/write-yaml.js","../src/scaffold.js","../src/constants.js","../src/high-level.js"],"sourcesContent":["import {promisify} from 'util';\nimport yaml from 'write-yaml';\n\nexport default promisify(yaml);\n","import {promises as fs} from 'fs';\nimport writeYaml from '../thirdparty-wrappers/write-yaml';\n\nexport default async function ({projectRoot, scope, projectName}) {\n const configShortName = projectName.substring('eslint-config-'.length);\n\n await Promise.all([\n writeYaml(`${projectRoot}/.eslintrc.yml`, {root: true, extends: [`@${scope}`, '.']}),\n fs.writeFile(\n `${projectRoot}/index.js`,\n `module.exports = {extends: '@form8ion/${configShortName}'};\\n`\n ),\n fs.writeFile(\n `${projectRoot}/example.js`,\n `module.exports = {\n extends: [\n '@${scope}',\n '@${scope}/${configShortName}'\n ]\n};\n`\n )\n ]);\n\n return {\n scripts: {'lint:js': 'eslint .'},\n dependencies: [`@form8ion/${projectName}`],\n devDependencies: [`@${scope}/eslint-config`],\n nextSteps: [\n {summary: 'Save the extended `@form8ion` eslint-config as an exact version'},\n {summary: 'Document saving this config using the dev flag'},\n {summary: 'Link to the extended `@form8ion` config in the README'}\n ]\n };\n}\n","export const PLUGIN_NAME = 'ESLint Config';\n","import deepmerge from 'deepmerge';\nimport {questionNames as jsQuestionNames} from '@form8ion/javascript';\nimport {dialects} from '@form8ion/javascript-core';\nimport {scaffold, questionNames as projectQuestionNames} from '@form8ion/project';\nimport {PLUGIN_NAME} from './constants';\n\nexport default function (options, javascriptScaffolderFactory) {\n const javaScriptLanguageChoice = 'JavaScript';\n\n return scaffold(\n deepmerge(\n options,\n {\n decisions: {[projectQuestionNames.PROJECT_LANGUAGE]: javaScriptLanguageChoice},\n languages: {\n [javaScriptLanguageChoice]: javascriptScaffolderFactory({\n ...options.decisions,\n [jsQuestionNames.PROJECT_TYPE]: 'Package',\n [jsQuestionNames.PROJECT_TYPE_CHOICE]: PLUGIN_NAME,\n [jsQuestionNames.UNIT_TESTS]: false,\n [jsQuestionNames.INTEGRATION_TESTS]: false,\n [jsQuestionNames.CONFIGURE_LINTING]: false,\n [jsQuestionNames.DIALECT]: dialects.COMMON_JS,\n [jsQuestionNames.SHOULD_BE_SCOPED]: true\n })\n }\n }\n )\n );\n}\n"],"names":["fs","scaffold","projectQuestionNames","jsQuestionNames"],"mappings":";;;;;;;;AAGA,gBAAe,SAAS,CAAC,IAAI,CAAC;;ACAf,uBAAc,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,WAAW,CAAC,EAAE;AAClE,EAAE,MAAM,eAAe,GAAG,WAAW,CAAC,SAAS,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC;AACzE;AACA,EAAE,MAAM,OAAO,CAAC,GAAG,CAAC;AACpB,IAAI,SAAS,CAAC,CAAC,EAAE,WAAW,CAAC,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;AACxF,IAAIA,QAAE,CAAC,SAAS;AAChB,MAAM,CAAC,EAAE,WAAW,CAAC,SAAS,CAAC;AAC/B,MAAM,CAAC,sCAAsC,EAAE,eAAe,CAAC,KAAK,CAAC;AACrE,KAAK;AACL,IAAIA,QAAE,CAAC,SAAS;AAChB,MAAM,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC;AACjC,MAAM,CAAC;AACP;AACA,MAAM,EAAE,KAAK,CAAC;AACd,MAAM,EAAE,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC;AACjC;AACA;AACA,CAAC;AACD,KAAK;AACL,GAAG,CAAC,CAAC;AACL;AACA,EAAE,OAAO;AACT,IAAI,OAAO,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;AACpC,IAAI,YAAY,EAAE,CAAC,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,CAAC;AAC9C,IAAI,eAAe,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;AAChD,IAAI,SAAS,EAAE;AACf,MAAM,CAAC,OAAO,EAAE,iEAAiE,CAAC;AAClF,MAAM,CAAC,OAAO,EAAE,gDAAgD,CAAC;AACjE,MAAM,CAAC,OAAO,EAAE,uDAAuD,CAAC;AACxE,KAAK;AACL,GAAG,CAAC;AACJ;;AClCY,MAAC,WAAW,GAAG;;ACMZ,kBAAQ,EAAE,OAAO,EAAE,2BAA2B,EAAE;AAC/D,EAAE,MAAM,wBAAwB,GAAG,YAAY,CAAC;AAChD;AACA,EAAE,OAAOC,UAAQ;AACjB,IAAI,SAAS;AACb,MAAM,OAAO;AACb,MAAM;AACN,QAAQ,SAAS,EAAE,CAAC,CAACC,aAAoB,CAAC,gBAAgB,GAAG,wBAAwB,CAAC;AACtF,QAAQ,SAAS,EAAE;AACnB,UAAU,CAAC,wBAAwB,GAAG,2BAA2B,CAAC;AAClE,YAAY,GAAG,OAAO,CAAC,SAAS;AAChC,YAAY,CAACC,eAAe,CAAC,YAAY,GAAG,SAAS;AACrD,YAAY,CAACA,eAAe,CAAC,mBAAmB,GAAG,WAAW;AAC9D,YAAY,CAACA,eAAe,CAAC,UAAU,GAAG,KAAK;AAC/C,YAAY,CAACA,eAAe,CAAC,iBAAiB,GAAG,KAAK;AACtD,YAAY,CAACA,eAAe,CAAC,iBAAiB,GAAG,KAAK;AACtD,YAAY,CAACA,eAAe,CAAC,OAAO,GAAG,QAAQ,CAAC,SAAS;AACzD,YAAY,CAACA,eAAe,CAAC,gBAAgB,GAAG,IAAI;AACpD,WAAW,CAAC;AACZ,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG,CAAC;AACJ;;;;"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@form8ion/eslint-config-extender",
|
|
3
3
|
"description": "shareable ESLint config scaffolder for extending another config",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.17",
|
|
6
6
|
"files": [
|
|
7
7
|
"example.js",
|
|
8
8
|
"lib/"
|
|
@@ -49,28 +49,28 @@
|
|
|
49
49
|
"prepare": "husky install"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@babel/register": "7.
|
|
53
|
-
"@cucumber/cucumber": "
|
|
54
|
-
"@form8ion/babel-preset": "1.6.
|
|
55
|
-
"@form8ion/commitlint-config": "1.0.
|
|
56
|
-
"@form8ion/eslint-config": "
|
|
57
|
-
"@form8ion/eslint-config-cucumber": "1.4.
|
|
58
|
-
"@form8ion/eslint-config-mocha": "1.2.
|
|
59
|
-
"@form8ion/remark-lint-preset": "
|
|
60
|
-
"@travi/any": "2.0.
|
|
52
|
+
"@babel/register": "7.17.7",
|
|
53
|
+
"@cucumber/cucumber": "8.1.1",
|
|
54
|
+
"@form8ion/babel-preset": "1.6.86",
|
|
55
|
+
"@form8ion/commitlint-config": "1.0.30",
|
|
56
|
+
"@form8ion/eslint-config": "4.0.0",
|
|
57
|
+
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
58
|
+
"@form8ion/eslint-config-mocha": "1.2.17",
|
|
59
|
+
"@form8ion/remark-lint-preset": "3.0.0",
|
|
60
|
+
"@travi/any": "2.0.20",
|
|
61
61
|
"@travi/github-scaffolder": "7.0.0",
|
|
62
|
-
"ban-sensitive-files": "1.9.
|
|
63
|
-
"chai": "4.3.
|
|
62
|
+
"ban-sensitive-files": "1.9.18",
|
|
63
|
+
"chai": "4.3.6",
|
|
64
64
|
"codecov": "3.8.3",
|
|
65
65
|
"cz-conventional-changelog": "3.3.0",
|
|
66
|
-
"debug": "4.3.
|
|
66
|
+
"debug": "4.3.4",
|
|
67
67
|
"gherkin-lint": "4.2.2",
|
|
68
68
|
"husky": "7.0.4",
|
|
69
69
|
"js-yaml": "4.1.0",
|
|
70
|
-
"lockfile-lint": "4.
|
|
71
|
-
"mocha": "9.
|
|
70
|
+
"lockfile-lint": "4.7.4",
|
|
71
|
+
"mocha": "9.2.2",
|
|
72
72
|
"mock-fs": "5.1.2",
|
|
73
|
-
"nock": "13.2.
|
|
73
|
+
"nock": "13.2.4",
|
|
74
74
|
"npm-run-all": "4.1.5",
|
|
75
75
|
"nyc": "15.1.0",
|
|
76
76
|
"package-preview": "4.0.0",
|
|
@@ -78,15 +78,15 @@
|
|
|
78
78
|
"remark-toc": "8.0.1",
|
|
79
79
|
"remark-usage": "10.0.1",
|
|
80
80
|
"rimraf": "3.0.2",
|
|
81
|
-
"rollup": "2.
|
|
81
|
+
"rollup": "2.70.2",
|
|
82
82
|
"rollup-plugin-auto-external": "2.0.0",
|
|
83
|
-
"sinon": "
|
|
84
|
-
"testdouble": "3.16.
|
|
83
|
+
"sinon": "13.0.2",
|
|
84
|
+
"testdouble": "3.16.5"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"@form8ion/javascript-core": "^4.0.0",
|
|
88
88
|
"@form8ion/project": "^11.0.0",
|
|
89
|
-
"@
|
|
89
|
+
"@form8ion/javascript": "^4.0.0",
|
|
90
90
|
"deepmerge": "^4.2.2",
|
|
91
91
|
"write-yaml": "^1.0.0"
|
|
92
92
|
}
|