-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "typescript-algorithms-and-data-structures",
"version": "1.0.0",
"description": "Algorithms and data structures implemented in TypeScript",
"author": "Maxim Zhukov (https://www.linkedin.com/in/maxim-zhukov-0648a8b5)",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FSou1/typescript-algorithms.git"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"dependencies": {},
"keywords": [
"typescript",
"algorithms",
"computer-science",
"data-structures",
"education",
"learning"
],
"bugs": {
"url": "https://github.com/FSou1/typescript-algorithms/issues"
},
"homepage": "https://github.com/FSou1/typescript-algorithms#readme",
"license": "MIT"
}