mirror of
https://github.com/sasjs/lint.git
synced 2026-01-05 03:30:06 +00:00
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) and [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest). These dependencies needed to be updated together. Updates `jest` from 29.3.1 to 29.4.3 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.4.3/packages/jest) Updates `@types/jest` from 29.2.5 to 29.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) --- updated-dependencies: - dependency-name: jest dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: "@types/jest" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "@sasjs/lint",
|
|
"description": "Linting and formatting for SAS code",
|
|
"scripts": {
|
|
"test": "jest --coverage",
|
|
"build": "rimraf build && tsc",
|
|
"preinstall": "node checkNodeVersion",
|
|
"prebuild": "node checkNodeVersion",
|
|
"prepublishOnly": "cp -r ./build/* . && rm -rf ./build && rm -rf ./src && rm tsconfig.json",
|
|
"postpublish": "git clean -fd",
|
|
"package:lib": "npm run build && cp ./package.json ./checkNodeVersion.js build && cp README.md build && cd build && npm version \"5.0.0\" && npm pack",
|
|
"lint:fix": "npx prettier --write \"{src,test}/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
|
|
"lint": "npx prettier --check \"{src,test}/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
|
|
"prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks || true"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"main"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sasjs/lint.git"
|
|
},
|
|
"keywords": [
|
|
"sas",
|
|
"SASjs",
|
|
"viya",
|
|
"lint",
|
|
"formatting"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/sasjs/lint/issues"
|
|
},
|
|
"homepage": "https://github.com/sasjs/lint#readme",
|
|
"devDependencies": {
|
|
"@types/jest": "29.4.0",
|
|
"@types/node": "18.11.18",
|
|
"all-contributors-cli": "6.24.0",
|
|
"jest": "29.4.3",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "29.0.3",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"dependencies": {
|
|
"@sasjs/utils": "2.52.0",
|
|
"ignore": "5.2.4"
|
|
}
|
|
}
|