mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 17:34:36 +00:00
Bumps [@sasjs/utils](https://github.com/sasjs/utils) from 2.18.0 to 2.19.0. - [Release notes](https://github.com/sasjs/utils/releases) - [Commits](https://github.com/sasjs/utils/compare/v2.18.0...v2.19.0) --- updated-dependencies: - dependency-name: "@sasjs/utils" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "@sasjs/lint",
|
|
"description": "Linting and formatting for SAS code",
|
|
"scripts": {
|
|
"test": "jest --coverage",
|
|
"build": "rimraf build && tsc",
|
|
"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 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}'",
|
|
"postinstall": "[ -d .git ] && 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": "^26.0.23",
|
|
"@types/node": "^15.12.2",
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"dependencies": {
|
|
"@sasjs/utils": "^2.19.0"
|
|
}
|
|
}
|