-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 928 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 928 Bytes
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
{
"name": "codewars",
"version": "1.0.0",
"description": "JavaScript and TypeScript solutions to various Codewars challenges.",
"author": "Jon Pacheco",
"homepage": "https://github.com/Ace4896/Codewars#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ace4896/Codewars.git"
},
"bugs": {
"url": "https://github.com/Ace4896/Codewars/issues"
},
"scripts": {
"test": "mocha"
},
"directories": {
"src": "./src",
"test": "./src"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "5.5"
}
}