-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@marcobiedermann/codewars",
"version": "1.0.0",
"description": "My attempt of solving Codewars Katas.",
"type": "module",
"scripts": {
"build": "npm run check",
"check": "tsc --noEmit",
"format": "prettier --cache --ignore-path .gitignore --write .",
"lint:js": "eslint --cache --ignore-path .gitignore .",
"lint": "npm run lint:js",
"prepare": "husky",
"test": "vitest",
"test:ci": "vitest run --coverage",
"update": "npx npm-check-updates --format group --interactive"
},
"bin": {
"@marcobiedermann/codewars": "./bin/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcobiedermann/codewars.git"
},
"keywords": [
"algorithms",
"code",
"codewars",
"javascript",
"kata",
"problem-solving",
"solutions",
"typescript"
],
"author": "Marco Biedermann",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/marcobiedermann/codewars/issues"
},
"homepage": "https://github.com/marcobiedermann/codewars#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.0.5"
},
"lint-staged": {
"**/*": "npm run format"
}
}