-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 985 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"type": "module",
"description": "A .js library and a CLI tool that compares two configuration files and shows a difference. Supports .json and .yaml/.yml files.",
"bin": {
"gendiff": "bin/gendiff.js"
},
"main": "src/index.js",
"scripts": {
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Funkicide/frontend-project-lvl2.git"
},
"author": "Roman Knel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Funkicide/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Funkicide/frontend-project-lvl2#readme",
"dependencies": {
"commander": "^9.3.0",
"lodash": "^4.17.21",
"yaml": "^2.1.1"
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.1",
"jest": "^28.1.0"
}
}