Skip to content

Commit

Permalink
Update package.json script to mirror node-saml (#888)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbarth committed Mar 6, 2024
1 parent f574901 commit cf541a5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions package.json
Expand Up @@ -35,19 +35,21 @@
"scripts": {
"build": "tsc",
"changelog": "gren changelog --override --generate --head master",
"lint": "eslint --ext .ts \"**/*.ts\" --cache",
"lint": "eslint --ext .ts \"**/*.ts\" --cache && npm run prettier-check",
"lint-watch": "onchange -k -p 100 \"**/*.ts\" -- eslint {{file}}",
"lint:fix": "eslint --ext .ts --fix src",
"lint:fix": "eslint --ext .ts --fix src && npm run prettier-format",
"prepare": "tsc",
"prettier-check": "prettier --config .prettierrc.json --check .",
"prettier-format": "prettier --config .prettierrc.json --write .",
"prettier-watch": "onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}",
"prerelease": "git clean -xfd && npm ci && npm test && npm run build",
"prettier-watch": "npm run prettier-format && onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}",
"prerelease": "git clean -xfd && npm ci && npm run lint && npm test && npm run build",
"release": "release-it",
"test": "npm run prettier-check && npm run lint && npm run tsc && nyc mocha",
"test": "npm run tsc && nyc mocha",
"test-watch": "mocha --watch",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"update:major": "npx npm-check-updates -i",
"update:minor": "npx npm-check-updates -i -t minor",
"watch": "concurrently --kill-others \"npm:*-watch\""
},
"dependencies": {
Expand Down

0 comments on commit cf541a5

Please sign in to comment.