-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
39
40
{
"name": "@hexlet/code",
"version": "1.7.0",
"type": "module",
"description": "Comparing of two files with displaying differences",
"bin": {
"gendiff": "bin/gendiff.js"
},
"main": "src/index.js",
"scripts": {
"test": "npx jest --colors",
"test:coverage": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdb81/frontend-project-46.git"
},
"author": "webdb81",
"license": "ISC",
"bugs": {
"url": "https://github.com/webdb81/frontend-project-46/issues"
},
"homepage": "https://github.com/webdb81/frontend-project-46#readme",
"dependencies": {
"@jest/globals": "^29.5.0",
"commander": "^11.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"jest-cli": "^29.5.0"
}
}