-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 926 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
34
35
36
37
38
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "This is a utility for finding differences between two files.",
"main": "index.js",
"scripts": {
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scampik/frontend-project-46.git"
},
"author": "Scamp",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/Scampik/frontend-project-46/issues"
},
"bin": {
"gendiff": "bin/gendiff.js"
},
"simple-git-hooks": {
"pre-push": "make lint"
},
"homepage": "https://github.com/Scampik/frontend-project-46#readme",
"dependencies": {
"commander": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1"
}
}