-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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": "@hexlet/code",
"version": "1.0.0",
"description": "Difference Calculator – a project that compares and finds differences between two data structures, such as configuration files. This project is suitable for experienced developers, as it involves complex architectural decisions, writing automated tests, and using functional programming. It also includes working with tree data structures and recursive algorithms, which provides an in-depth learning experience.",
"main": "src/index.js",
"bin": {
"gendiff": "bin/gendiff.js"
},
"scripts": {
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "https://github.com/IvanLiVa"
},
"author": "Litvinov Ivan",
"license": "ISC",
"type": "module",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.4.0",
"commander": "^12.1.0",
"globals": "^15.4.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"eslint-plugin-import": "^2.29.1"
}
}