-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 864 Bytes
/
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
{
"name": "technical-tests",
"version": "1.0.0",
"description": "A repository dedicated to problem-solving in the style of LeetCode to enhance programming and algorithm skills",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "vitest",
"lint": "prettier --check problems",
"lint:fix": "prettier --write problems"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidomodarelli/technical-tests.git"
},
"keywords": [
"coding-challenges",
"solutions",
"problem-solving"
],
"author": "Guido Modarelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/guidomodarelli/technical-tests/issues"
},
"homepage": "https://github.com/guidomodarelli/technical-tests#readme",
"devDependencies": {
"prettier": "^3.3.0",
"vitest": "^1.6.0"
}
}