-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"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 .",
"lint": "npm run lint:js",
"prepare": "husky",
"test": "node --experimental-strip-types --no-warnings --test --watch",
"test:ci": "mkdir -p coverage && node --experimental-strip-types --experimental-test-coverage --no-warnings --test --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"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": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"lint-staged": {
"**/*": "npm run format"
}
}