Skip to content

Commit

Permalink
chore: update yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
awlayton committed Jan 22, 2025
1 parent 759743d commit d5b1dcb
Show file tree
Hide file tree
Showing 3 changed files with 2,024 additions and 755 deletions.
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
compressionLevel: mixed

enableGlobalCache: false

ignorePath: true
201 changes: 95 additions & 106 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,107 +1,96 @@
{
"name": "@qlever-llc/unfisk",
"version": "2.3.1",
"description": "OADA uservice to \"unflatten\" a list into a list of links",
"author": "Alex Layton <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/Qlever-LLC/unfisk",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -b",
"start": "node ${INSPECT:-} --enable-source-maps dist/index.js",
"test": "yarn build test && c8 ava",
"test:debug": "ava -T 60m -sv",
"lint": "eslint ."
},
"ava": {
"failFast": false,
"files": [
"**/*.test.ts"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"c8": {
"reporter": [
"text",
"lcov"
],
"all": true,
"src": "src",
"exclude": [
"*.d.ts",
".pnp.*",
".test"
]
},
"dependencies": {
"@oada/client": "^5.2.6",
"@oada/lib-prom": "^4.0.1",
"@oada/pino-debug": "^4.0.1",
"convict": "^6.2.4",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"moment": "^2.30.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/convict": "^6.1.6",
"@types/debug": "^4.1.12",
"@types/node": "^22.9.1",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@yarnpkg/sdks": "^3.2.0",
"ava": "6.2.0",
"c8": "^10.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-typescript": "^4.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^1.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^54.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"resolutions": {
"cross-spawn": "^7.0.6"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.9.0"
}
}
"name": "@qlever-llc/unfisk",
"version": "2.4.0",
"description": "OADA uservice to \"unflatten\" a list into a list of links",
"author": "Alex Layton <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/Qlever-LLC/unfisk",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -b",
"start": "node ${INSPECT:-} --enable-source-maps dist/index.js",
"test": "yarn build test && c8 ava",
"test:debug": "ava -T 60m -sv",
"lint": "eslint ."
},
"ava": {
"failFast": false,
"files": ["**/*.test.ts"],
"typescript": {
"extensions": ["ts"],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"c8": {
"reporter": ["text", "lcov"],
"all": true,
"src": "src",
"exclude": ["*.d.ts", ".pnp.*", ".test"]
},
"dependencies": {
"@oada/client": "^5.2.6",
"@oada/lib-prom": "^4.0.1",
"@oada/pino-debug": "^4.0.1",
"convict": "^6.2.4",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"moment": "^2.30.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/convict": "^6.1.6",
"@types/debug": "^4.1.12",
"@types/node": "^22.10.7",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@yarnpkg/sdks": "^3.2.0",
"ava": "6.2.0",
"c8": "^10.1.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-xo": "^0.46.0",
"eslint-config-xo-typescript": "^7.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"resolutions": {
"cross-spawn": "^7.0.6"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.9.0"
}
}
Loading

0 comments on commit d5b1dcb

Please sign in to comment.