-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "Gen diff cli app - compares two configuration files and shows a difference.",
"main": "src/index.js",
"scripts": {
"test": "npx jest --bail",
"watch": "npx jest --watch",
"coverage": "npm run test -- --coverage"
},
"bin": {
"gendiff": "bin/gendiff.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Finnko/frontend-project-lvl2.git"
},
"author": "Aleksei Khabirov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Finnko/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Finnko/frontend-project-lvl2#readme",
"dependencies": {
"commander": "^8.1.0",
"js-yaml": "^4.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@jest/globals": "27.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.0",
"jest": "27.1.0",
"jest-cli": "27.1.0"
}
}