-
-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 637 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 637 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
{
"name": "typescript",
"version": "1.0.0",
"type": "module",
"description": "A repository for All algorithms implemented in Typescript (for educational purposes only)",
"main": "",
"devDependencies": {
"@types/jest": "^29.0.3",
"husky": "^8.0.1",
"jest": "^29.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1"
},
"scripts": {
"test": "jest --no-cache",
"style": "npx prettier . --write",
"check-style": "npx prettier . --check",
"prepare": "husky install"
},
"author": "TheAlgorithms",
"license": "MIT",
"dependencies": {
"fp-ts": "^2.16.9"
}
}