We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a44dc5 commit b6dc497Copy full SHA for b6dc497
1 file changed
package.json
@@ -11,9 +11,16 @@
11
"build": "tsc",
12
"dev": "tsx watch src/cli.ts",
13
"prepare": "npm run build",
14
- "test": "vitest",
+ "test": "vitest run",
15
+ "test:watch": "vitest",
16
+ "test:coverage": "vitest run --coverage",
17
"lint": "eslint src",
- "format": "prettier --write src"
18
+ "lint:fix": "eslint src --fix",
19
+ "format": "prettier --write src",
20
+ "format:check": "prettier --check src",
21
+ "preversion": "npm test && npm run lint",
22
+ "version": "npm run format && git add -A src",
23
+ "postversion": "git push && git push --tags"
24
},
25
"keywords": [
26
"insforge",
0 commit comments